Java EAN-128 Generator generate, create barcode EAN-128 images in Java application

Generate, Create, Print, Draw EAN-128 (GS1 128) barcode in Java projects


  • Easy to generate GS1-128/EAN-128 barcodes in Java Class, J2EE applications
  • Simple to redistribute Java GS1-128/EAN-128 barcode library. No registration key. No activation code.
  • Generating high quality GS1-128/EAN-128 Bar Code images in GIF, JPEG, & EPS
  • Generate GS1-128/EAN-128 barcodes in Jasper Reports, iReport & Eclipse BIRT
  • Completely developed in Java
  • Mature GS1-128/EAN-128 barcode generation Java library used by 2000+ clients


Index
 

Java Barcode GS1 128 / EAN 128 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.

 

GS1 128 / EAN 128 Introduction

GS1-128 is an application standard of the GS1 implementation using the Code 128 barcode specification. The former correct name was UCC/EAN-128. Other no longer used names have included UCC-128 and EAN-128. GS1-128 uses a series of Application Identifiers to include additional data such as best before dates, batch numbers, quantities, weights and many other attributes needed by the user.

 

Java GS1 128 / EAN 128 Generator - Valid Data Scope

Java EAN 128/GS1 128 Generator encodes:

  • all 128 characters of ASCII

  • values 128-255 in accordance with ISO 8859-1. There are referred to as extended ASCII.



 

Creating GS1-128 (UCC/EAN-128) Compliant BarCodes in Java

GS1 Function Code 1 (FNC1) and the Application Identifier (AI)

OnBarcode Java Barcode Generator allows easily to add application identifiers in GS1 128 / EAN 128, by add parentheses to AIs.

For example, to encode AI (00), with data 350123451234567894, with second AI (21), with data 01234567, you need pass string "(00)350123451234567894(21)01234567" to barcode data property

	        EAN128 barcode = new EAN128(); 
	        
	        barcode.setData("(00)350123451234567894(21)01234567"); 
	    
	        ean128.Format = ImageFormat.Gif;
	        ean128.drawBarcode("java-ean128.gif");
 

Java GS1 128 / EAN 128 Barcode Generation FAQ?

  1. How to generate barcode GS1 128 in Java class? (Complete Java GS1 128 Generator Demo Source Code)

    // Create Java EAN128 object 
    EAN128 barcode = new EAN128(); 
    
    // Set EAN128 data text to encode
    barcode.setData("(00)350123451234567894"); 
    
    // Generate EAN128 barcode & print into Graphics2D object
    barcode.drawBarcode("Java Graphics2D object"); 
    
    // Generate EAN128 barcode & encode into GIF format
    barcode.drawBarcode("C://barcode-ean128.gif"); 
    
    // Generate EAN128 barcode & encode into JPEG format
    barcode.drawBarcode("C://barcode-ean128.jpg"); 
    
    


  2. How to generate & encode GS1-128/EAN-128 barcodes to EPS?

    // Create Java EAN128 object 
    EAN128 barcode = new EAN128(); 
    
    // Set EAN128 data text to encode
    barcode.setData("(00)350123451234567894"); 
    
    // Generate EAN128 barcode & encode into EPS
    barcode.drawBarcode2EPS("C://barcode-ean128.eps"); 


  3. How to create & encode GS1-128/EAN-128 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=(00)350123451234567894&TYPE=EAN128

    • 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=(00)350123451234567894&TYPE=EAN128" />



  4. How to create & print barcode GS1-128/EAN-128 image in Java Servlet class?

    import com.onbarcode.barcode.AbstractBarcode; 
    import com.onbarcode.barcode.EAN128; 
    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 { 
                EAN128 barcode = new EAN128(); 
                barcode.setData("(00)350123451234567894"); 
                     
                ServletOutputStream servletoutputstream = response.getOutputStream(); 
                  
                response.setContentType("image/jpeg"); 
                response.setHeader("Pragma", "no-cache"); 
                response.setHeader("Cache-Control", "no-cache"); 
                response.setDateHeader("Expires", 0); 
               
                // Generate EAN128 barcode & output to ServletOutputStream
                barcode.drawBarcode(servletoutputstream); 
          
            } catch (Exception e) { 
                throw new ServletException(e); 
            } 
        } 
    } 


  5. How to generate GS1-128/EAN-128 barcode image in Jasper Reports?

    Complete Guide for Barcode Generation in Jasper Reports

  6. How to generate GS1-128/EAN-128 barcode image in iReport?

    Complete Guide for Barcode Generation in iReport

  7. How to generate GS1-128/EAN-128 barcode image in Eclipse BIRT?

    You can stream barcodes into your BIRT reports using Java Barcode Generator.

    However we recommend you use our BIRT Barcode Generator Plugin to generate and print GS1 128 / EAN 128 barcodes in your BIRT reports.

  8. How to set generated GS1-128/EAN-128 barcode 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 EAN 128/GS1 128 Generator - Property Settings


Java EAN 128/GS1 128 Generator in Java Class: com.onbarcode.barcode.EAN128

Category Properties Value Comments
Basic Property: data
URL: DATA
Type: String
Default: ""
Barcode value to encode

GS1-128/EAN-128 Valid Data Char Set:
  • all 128 ASCII characters (Char from 0 to 127)

Property: addCheckSum
iReport & URL: ADD-CHECK-SUM
Type: boolean
Default: false
addCheckSum property is not applied here.
 
GS1 128
EAN 128
Special
Property: processTilde
iReport & URL: PROCESS-TILDE
Type: boolean
Default: false
Set the processTilde property to true, if you want use the tilde character "~" to specify special characters in the input data.

  • 1-byte character: ~0dd/~1dd/~2dd (character value from 000 ~ 255); ASCII character '~' is presented by ~126
    Strings from "~256" to "~299" are unused
  • 2-byte character (Unicode): ~6ddddd (character value from 00000 ~ 65535)
    Strings from "~665536" to "~699999" are unused
  • for GS1 AI Code:
    ~ai2: AI code with 2 digits
    ~ai3: AI code with 3 digits
    ~ai4: AI code with 4 digits
    ~ai5: AI code with 5 digits
    ~ai6: AI code with 6 digits
    ~ai7: AI code with 7 digits
 
Barcode
Size
Related
Property: autoResize
iReport & URL: AUTO-RESIZE
Type: boolean
Default: false
Auto resize the generated barcode image
Property: barAlignment
iReport & URL: BAR-ALIGNMENT
Type: int
Default: 1 (center)
Barcode horizontal alignment inside the image. 0: left, 1: center, 2: right.
Property: uom
iReport & URL: UOM
Type: int
Default: 0 (pixel)
Unit of meature for all size related settings in the library.
Valid values: 0: pixel; 1: inch; 2: cm.
Property: X
iReport & URL: X
Type: float
Default: 1
Width of barcode bar module (narrow bar), default is 1 pixel
Property: Y
iReport & URL: Y
Type: float
Default: 30
Height of barcode bar module, default is 30 pixel
Property: barcodeWidth
iReport & URL: BARCODE-WIDTH
Type: float
Default: 0
Barcode image width.

If barcodeWidth setting is smaller than the barcode required minimum width, the library will automatically reset to barcode minimum width.
Property: barcodeHeight
iReport & URL: BARCODE-HEIGHT
Type: float
Default: 0
Barcode image height.

If barcodeHeight setting is smaller than the barcode required minimum height, the library will automatically reset to barcode minimum height.
Property: leftMargin
iReport & URL: LEFT-MARGIN
Type: float
Default: 0
Barcode image left margin size.
Property: rightMargin
iReport & URL: RIGHT-MARGIN
Type: float
Default: 0
Barcode image right margin size.
Property: topMargin
iReport & URL: TOP-MARGIN
Type: float
Default: 0
Barcode image top margin size.
Property: bottomMargin
iReport & URL: BOTTOM-MARGIN
Type: float
Default: 0
Barcode image bottom margin size.
Property: resolution
iReport & URL: RESOLUTION
Type: int
Default: 72
Barcode image resolution in DPI (Dots per inch).
Property: rotate
iReport & URL: ROTATE
Type: int
Default: 0 (IBarcode.ROTATE_0)
Valid values:

  • 0 (IBarcode.ROTATE_0)
  • 1 (IBarcode.ROTATE_90)
  • 2 (IBarcode.ROTATE_180)
  • 3 (IBarcode.ROTATE_270)
 
Barcode
Colors
Property: backColor
iReport & URL: BACK-COLOR
Type: Color
Default: white
Barcode image background color
Property: foreColor
iReport & URL: FORE-COLOR
Type: Color
Default: black
Barcode image foreground color
 
Font
Style
Property: showText
iReport & URL: SHOW-TEXT
Type: boolean
Default: true
If true, display barcode data text under the barcode, otherwise do not display.
Property: textFont
iReport & URL: TEXT-FONT
Type: Font
Default:
new Font("Arial", Font.PLAIN, 11)
Barcode text font style.

In Java Servlet web streaming, using the url paramter in the following format:
&TEXT-FONT=Arial|bold|9
Property: textMargin
iReport & URL: TEXT-MARGIN
Type: float
Default: 6
Space between barcode and barcode data text, default is 6 pixel
Property: textColor
iReport & URL: TEXT-COLOR
Type: Color
Default: black
Barcode text color
 
Methods
// generate barcode and output to OutputStream object
public boolean drawBarcode(OutputStream outputStream) throws Exception

// generate barcode into a new BufferedImage object
public BufferedImage drawBarcode() throws Exception

/*
    Use this method to generate barcode, and save into gif or jpeg files
    1. to save into gif file, filename ends with ".gif", like "c:\\barcode.gif"
    2. to save into jpeg file, filename ends with ".jpg", like "c:\\barcode.jpg"
*/
public byte[] drawBarcodeToBytes() throws Exception

public boolean drawBarcode(String imageFile) throws Exception

// Generate barcode and save into EPS file, the filename must ends with ".eps"
public void drawBarcode2EPS(String filename) throws Exception

// Generate barcode on Graphics2D object within certain area
public void drawBarcode(Graphics2D g, Rectangle2D rectangle) throws Exception









OnBarcode is a market-leading provider of barcode 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 high quality tutorials and guides for various linear, 2d barcode information, such as C# Barcode, QR Code C#, QR Code VB.NET, QR Code ASP.NET, QR Code .NET, ASP.NET Barcode. OnBarcode products support most common barcode symbologies including QRCode C# SDK, Data Matrix in C#.net Control, PDF-417 Componennt in C# .NET, Code 128 VS .net sdk, Code 39 C# library.
Terms of Use | Privacy Policy
Copyright © OnBarcode.com . All rights reserved.