Java Barcode Code-39 Generator

Create, Generate, Draw, Print Barcode Code-39 in Java Application


  • Easy to generate Code-39 barcodes in Java Class, J2EE applications
  • Simple to redistribute Java Code-39 barcode library. No registration key. No activation code.
  • Generating high quality Code-39 Bar Code images in GIF, PNG, JPEG, EPS & BITMAP
  • Generate Code-39 barcodes in Jasper Reports, iReport & Eclipse BIRT
  • Compatible with ISO / IEC 16388 (2rd edition 2007-05-15)
  • Completely developed in Java
  • Mature Code-39 barcode generation Java library used by 2000+ clients
Index
 

Java Barcode Code-39 Generator Introduction

Java Barcode is a Java barcode generator which generates high quality 1D (linear) and 2D (matrix) barcodes in Java, Jasper Reports, iReport, and Eclipse BIRT projects.

 

Barcode Code-39 Introduction

Code 39 (also known as "USS Code 39", "Code 3/9", "Code 3 of 9", "USD-3", "Alpha39", "Type 39") is a barcode symbology that can encode uppercase letters (A through Z), digits (0 through 9) and a handful of special characters like the $ sign.

Code 39 is restricted to 44 characters. In Full ASCII Code 39 Symbols 0-9, A-Z, "." ,and "-" are the same as their representations in Code 39. Lower case letters, additional punctuation characters and control characters are represented by sequences of two characters of Code 39.

 

Java Code-39 Generator - Valid Data Scope

Java Code 39 Generator encodes:


Java Code 39 Extension Generator supports:



 

Java Barcode Code 39 Generation FAQ?

  1. How to generate barcode code 39 in Java class?

    // Create Java Code39 object 
    Code39 barcode = new Code39(); 
    
    // Set Code39 data text to encode
    barcode.setData("CODE39-IN-JAVA"); 
    
    // Generate Code39 barcode & print into Graphics2D object
    barcode.drawBarcode("Java Graphics2D object"); 
    
    // Generate Code39 barcode & encode into GIF format
    barcode.drawBarcode("C://barcode-code39.gif"); 
    
    // Generate Code39 barcode & encode into JPEG format
    barcode.drawBarcode("C://barcode-code39.jpg"); 
    
    


  2. How to generate & encode Code-39 barcodes to EPS?

    // Create Java Code39 object 
    Code39 barcode = new Code39(); 
    
    // Set Code39 data text to encode
    barcode.setData("CREATE CODE39 IN EPS"); 
    
    // Generate Code39 barcode & encode into EPS
    barcode.drawBarcode2EPS("C://barcode-Code39.eps"); 


  3. How to create & encode Code 39 image in html or jsp pages?



    • Under demo package, copy barcode folder and its contents to your tomcat.

    • Start tomcat, navigate to http://YourDomain:Port/barcode/barcode?DATA=0123456789&TYPE=CODE39

    • To create bar code images in html or jsp pages, you can insert a image tag (img) into your page.
      For example, <img src="http://YourDomain:Port/barcode/barcode?DATA=0123456789&TYPE=CODE39" />



  4. How to create & print barcode Code 39 image in Java Servlet class?

    import com.onbarcode.barcode.AbstractBarcode; 
    import com.onbarcode.barcode.Code39; 
    import javax.servlet.http.HttpServlet; 
    import javax.servlet.http.HttpServletRequest; 
    import javax.servlet.http.HttpServletResponse; 
    import javax.servlet.ServletException; 
    import javax.servlet.ServletOutputStream; 
       
    public class BarcodeServlet extends HttpServlet 
    { 
        public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException 
        { 
            try { 
                Code39 barcode = new Code39(); 
                barcode.setData("0123456789"); 
                     
                ServletOutputStream servletoutputstream = response.getOutputStream(); 
                  
                response.setContentType("image/jpeg"); 
                response.setHeader("Pragma", "no-cache"); 
                response.setHeader("Cache-Control", "no-cache"); 
                response.setDateHeader("Expires", 0); 
               
                // Generate Code-39 barcode & output to ServletOutputStream
                barcode.drawBarcode(servletoutputstream); 
          
            } catch (Exception e) { 
                throw new ServletException(e); 
            } 
        } 
    } 


  5. How to generate & print barcode Code 39 image in Jasper Reports?



    Complete Guide for Barcode Generation in Jasper Reports

  6. How to generate & print barcode Code 39 image in iReport?



    Complete Guide for Barcode Generation in iReport

  7. How to generate & print barcode Code 39 image in Eclipse BIRT?



    Complete Guide for Barcode Generation in Eclipse BIRT

  8. How to set generated barcode Code 39 image width and height?

    1) You can set barcode image width and height through properties barcodeWidth and barcodeHeight values.

    or

    2) You can set X (bar module width) and Y (bar module height) values

 

Java Code 39 Generator - Property Settings


Java Code 39 Generator - in Java Class: com.onbarcode.barcode.Code39

Category Class Properties Servlet Properties Default Comments
Basic data DATA "" value to encode
addCheckSum ADD-CHECK-SUM true addCheckSum property is optional. Modulo 43 will be applied, if addCheckSum property is true.
 
Code 39
Special
extension EXTENSION false If you want to encode any 128 ASCII characters, extension must be true.
I I 1.0 The space between 2 characters in code 39; This a multiple of X; The default is 1.;
N N 2.0 Wide/narrow ratio, 2.0 - 3.0 inclusive, default is 2.
showStartStopInText SHOW-START-STOP-IN-TEXT true If true, display a * in the beginning and end of barcode text
 
Size Related uom UOM 0 Unit of meature for all size related setting in the library.
0: pixel; 1: inch; 2: cm.
X X 1 width of barcode module (narrow bar), default is 1 pixel
Y Y 30 barcode module height, default is 30 pixel
barcodeWidth BARCODE-WIDTH 0 generted barcode image width
barcodeHeight BARCODE-HEIGHT 0 generted barcode image height
leftMargin LEFT-MARGIN 0 image left margin
rightMargin RIGHT-MARGIN 0 image right margin
topMargin TOP-MARGIN 0 image top margin
bottomMargin BOTTOM-MARGIN 0 image bottom margin
resolution RESOLUTION 72 in DPI
rotate ROTATE IBarcode.ROTATE_0 (0) valid values:
IBarcode.ROTATE_0 (0),
IBarcode.ROTATE_90 (1),
IBarcode.ROTATE_180 (2),
IBarcode.ROTATE_270 (3)
 
Text
&
Color
showText SHOW-TEXT true If true, display barcode data text, otherwise do not display.
showCheckSumChar SHOW-CHECKSUM-CHAR true If true, display the check sum character in the end of data, if there is a check sum.
textFont TEXT-FONT Arial, Plain, 11 Barcode text font style
textMargin TEXT-MARGIN 6 Space between barcode and barcode data text, default is 6 pixel



All Java Barcode Generator Supporting Bar Code Symbology Types



Java Barcode Generator Tutorial