Java Code 11 Generator Library SDK Integration & Developer Guide

Generate barcode Code 11 images in Java class, Servlet, JSP, J2EE with complete sample Java source code


  • Generate, create Code 11 in Java applications
  • Easy to install & integrate barcode Code 11 generation library SDK into Java developments
  • Generate over 30 linear, 2d barcode images in Java including Java QR Code, Java Data Matrix, Java PDF-417, Java Code 39, Java Code 128, Java UPC
  • Generate Code 11 images in Java class, Java Bean, Swing, Applet, J2SE
  • Create barcode Code 11 in Java web application, including Servlet, JSP, EJB, Tomcat, JBoss, J2EE
  • Create & Print Code 11 barcode in BIRT reports designer and BIRT report runtime
  • Generate & Draw Code 11 in Jasper Reports, iReport
  • Encode Code 11 images to jpeg, eps, gif, png, tiff, bitmap files in Java program


Index
 

Java Code 11 Generator Introduction

Code 11, known as Code11, USD-8, USD8, is a high-density numeric-only linear barcode symbology.

Generate and create Code 11 barcode using Java is one of the functions in OnBarcode's Barcode for Java Generating Java library (jar file), which supports generating & printing Code 11 and 20+ other linear & 2D bar codes in Java application and software.

Code 11 Generator and Reader library, SDK & application
Code 11 Generator components and software include .NET Code 11, C# Code 11, VB.NET Code 11, ASP.NET Code 11, Code 11 Generator Software.

This document is providing a detailed Java sample source code about generating Code 11 barcodes in Java class using Java Barcode generation component. Complete Code 11 custmoization settings is included in Java Code 11 generating guide.

 

Generate Code 11 Barcodes in Java

Generating Code 11 barcode in Java class example:

	Code11 barcode = new Code11();
	
	// barcode data to encode
	/*
	           Code-11 Valid data char set:
	                0, 1, 2, 3, 4, 5, 6, 7, 8, 9
	            - (Dash)
	        */
	barcode.setData("0123456789-");
	
	// Unit of Measure, pixel, cm, or inch
	barcode.setUom(IBarcode.UOM_PIXEL);
	// barcode bar module width (X) in pixel
	barcode.setX(3f);
	// barcode bar module height (Y) in pixel
	barcode.setY(75f);
	
	// barcode image margins
	barcode.setLeftMargin(0f);
	barcode.setRightMargin(0f);
	barcode.setTopMargin(0f);
	barcode.setBottomMargin(0f);
	
	// barcode image resolution in dpi
	barcode.setResolution(72);
	
	// disply barcode encoding data below the barcode
	barcode.setShowText(true);
	// barcode encoding data font style
	barcode.setTextFont(new Font("Arial", 0, 12));
	// space between barcode and barcode encoding data
	barcode.setTextMargin(6);
	
	//  barcode displaying angle
	barcode.setRotate(IBarcode.ROTATE_0);
	
	barcode.drawBarcode("C:\\code11.gif");


Java Barcode Generation Demo Source Codes:









OnBarcode is a market-leading provider of barcode imaging generator, reader controls and components for ASP.NET, Windows Forms, WPF, as well Java, Android, iOS (iPhone, iPad) across all major enterprise development platforms. We provides comprehensive tutorials and how-tos for various linear, 2d barcode information, such as C# in ASP.NET, C# .NET, C# Barcode Encoding, C# Barcode Image, VB.NET in ASP.NET, VB.NET Winforms, VB.NET Barcode Encoding. OnBarcode barcode products are supported by RasterEdge ASP.NET Document Viewer, which supports ASP.NET PDF Viewer, ASP.NET MVC Document Viewer, ASP.NET PDF Editor, MVC PDF Viewer. And provide high quality C# Convert PDF to Tiff, C# Convert PDF to Word, C# Convert PDF to HTML, C# Convert PDF to Jpeg images, and their easy and simple documents, like C# PDF SDK, C# extract text from PDF, C# Compress PDF, Print PDF in C# and C# extract image from PDF.
Terms of Use | Privacy Policy
Copyright © OnBarcode.com . All rights reserved.