Newsletter |
How to Generate Barcodes Using Java, Barcodes Example
Core Java » on Nov 17, 2012 { 15 Comments } By Sivateja
Let us see how to generate Barcodes with java, we have different types of barcodes, among them i am going to explain about ‘Code 128‘ type 🙂
Files Required
- BarCode128Java4s.java
- iText.jar [ Make sure you have iText jar file in your class path ]
- Install Barcode scanner in your Smart Phone to test, whether its working perfectly or not
BarCode128Java4s.java
package pdf; import java.io.FileNotFoundException; import java.io.FileOutputStream; import com.itextpdf.text.Document; import com.itextpdf.text.DocumentException; import com.itextpdf.text.PageSize; import com.itextpdf.text.Paragraph; import com.itextpdf.text.Rectangle; import com.itextpdf.text.pdf.Barcode128; import com.itextpdf.text.pdf.PdfWriter; public class BarCode128 { public static void main(String[] args) throws FileNotFoundException, DocumentException { Document document = new Document(new Rectangle(PageSize.A4)); PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("c:/Java4s_BarCode_128.pdf")); document.open(); document.add(new Paragraph("Code_128 Format_Java4s.com")); Barcode128 code128 = new Barcode128(); code128.setGenerateChecksum(true); code128.setCode("1234554321"); document.add(code128.createImageWithBarcode(writer.getDirectContent(), null, null)); document.close(); System.out.println("Document Generated...!!!!!!"); } }
Explanation
I am going to explain much about iText API as we already explained clearly at Creating PDF with Java and iText
- At line number 19, specifying my output file
- At line number 24,25,26 created Barcode128 class object and added required data to be appeared in my Barcode
- That’s it.
Mobile Output
Its working fine 😉
​ ​​
You Might Also Like
::. About the Author .:: | ||
Comments
15 Responses to “How to Generate Barcodes Using Java, Barcodes Example”
Respected Sir,
I am involving in J2EE software development project using struts2 frame work for web tier and I like to use barcode scanner to retrieve product detail, for that purpose I it need barcode generating of all products as I would like mention that I am interested in linear barcode generation. Please help me how I generate barcode and how I keep it in our persistence table like products_dtl table and retrieve it from for query purpose.
i want to print continuous stickers on pdf by retriving unique enrollment from database in java using itextpdf with 3 column and 7 rows in my one page. so that i can print it and make sticker formate
Hi sir,
I want to generate the barcode for the selected outgoing or incoming document once i select and click on the barcode .
Worked perfectly thanks Siva.
How to Generate Barcodes Using Java with Dynamic data
i want to print stickers on pdf by retriving unique id from database in java using itextpdf in my PDF page. so that i can print it and make sticker formate.
Please provide us which JAR files we have to import.
itextpdf.jar file, there are many version you can use latest one. itext is to generate pdf
Barcode128.java having error at Document class which is abstract so how you can instantiate it using new operator…
Wow, marvelous blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your website is great, as well as the content!
Can u please send me the code to print this on image instead of pdf
It's working fine. any option to create image as barcode instead of PDF
Sir please send me the code to create image as Barcode instead of PDF
How to read barcode?
Sir, whenever scan bar code need to display product details and price. please provide more info how to display product details and price .