Java Code 93 Generator Library SDK Integration & Developer Guide
Generate barcode Code 93 images in Java class, Servlet, JSP, J2EE with complete sample Java source code
- Generate, create Code 93 in Java applications
- Easy to install & integrate barcode Code 93 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 EAN
- Generate Code 93 images in Java class, Java Bean, Swing, Applet, J2SE
- Create barcode Code 93 in Java web application, including Servlet, JSP, EJB, Tomcat, JBoss, J2EE
- Create & Print Code 93 barcode in BIRT reports designer and BIRT report runtime
- Generate & Draw Code 93 in Jasper Reports, iReport
- Encode Code 93 images to jpeg, eps, gif, png, tiff, bitmap files in Java program
Index
Java Code 93 Generator Introduction
Code 93, also known as ANSI/AIM Code 93, ANSI/AIM Code 93, Uniform Symbology Specification Code 93, provides a higher density and data security enhancement to Code 39.
Generate and create Code 93 barcode using Java is one of the functions in OnBarcode's
Barcode for Java Generating Java library (jar file), which supports
generating & printing Code 93 and 20+ other linear & 2D bar codes in Java application and software.
Code 93 Generator and Reader library, SDK & application
Code 93 Generator components and software include
Code 93 for .NET,
Code 93 for C#,
Code 93 for VB.NET,
Code 93 for ASP.NET,
Code 93 Generator.
This document is providing a detailed Java sample source code about generating Code 93 barcodes in Java class using
Java Barcode generation component.
Complete Code 93 custmoization settings is included in
Java Code 93 generating guide.
Generate Code 93 Barcodes in Java
Generating Code 93 barcode in Java class example:
Code93 barcode = new Code93();
/*
Code 93 Valid data char set:
0, 1, 2, 3, 4, 5, 6, 7, 8, 9 (Digits)
A - Z (Uppercase letters)
- (Dash), $ (Dollar), % (Percentage), (Space), . (Point), / (Slash), + (Plus)
*/
barcode.setData("CODE93DATA");
// 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:\\code93.gif");
Java Barcode Generation Demo Source Codes: