Free Web Hosting Provider - Web Hosting - E-commerce - High Speed Internet - Free Web Page
Search the Web

RBarCode 1.0, barcodes for the Java[TM] platform

Home
go to main page
Documentation
Download
evaluate the product
Order and Pricing
order full version




Index













Add barcodes to your Java[TM] application or website. RBarcode contains an applet/servlet and a Java[TM] class (also Bean) so that you can use it in you web site or you application. The class is an extension of java.awt.Canvas so you can put it in any java container. The main features are:

  • Supports all major 1D (lineal) standards


- EAN13
- EAN8
- CODE128 (A,B and C)
- UPCA
-
UPCE
- CODE 39


- CODE 39
- EXTENDED
- CODE 93
- MSI
- CODABAR
- CODE11

- INTERLEAVED 2 0f 5
- INDUSTRIAL 2 of 5
- POSTNET
- EAN and UPC suplements (2 and 5)

- EAN128


... more ....

  • and also 2D standards


- PDF417: encode up to 1800 characters in a barcode (learn mode about PDF417)
- Macro PDF 417: encodes thousands of byte in several symbols (included in PDF 417).
- Micro PDF 417: even greater space efficiency for small item marking applications than the standard PDF 417 symbology
- Aztec code:
code is a 2D matrix symbology made up of square modules.
- Code 16K
- DataMatrix (ECC200): more than 3000 characters in a barcode read user manual.
- Maxicode: fast scanning (learn mode about Maxicode or read the user manual.)

  • some features are:


- Export to gif or jpg
- create a java.awt.Image object
- Javascript integration

- Source code license
- highly configurable (fonts, colors ...)
- barcode can be rotated

- checksum values



... and many more....

  • it can be used in different ways:


-- As java.awt.Panel object in your Java[TM] applications
- As Applet in your Web/ASP/Php .. applications
- As Servlet in your Web/JSP[TM] applications
- As Bean


  • It runs on the Java[TM] platform 1.1 or later
  • Click here to see some examples
  • Some users of RBarcode


- Mannesmann TeleCommerce
- Unilever Spain
- Hewlett Packard Company
- IBM
- Oracle

- British Airways
- United Parced Service
- Beans AG
- Sargon Consulting
- Kolacom Inc.

- e-SAP
- AT&T
- Jordan SA
- Mitsubishi Polyester Film

... and many more....

  • What our customers say:

I'm a licensed holder of your 1D and 2D barcode libs (source included). Everything has been going very smoothly -- the libraries are very nicely done and well documented.

Harry Whitehouse

For this price you will get a powerfull applet and Java[TM] classes that is very easy to use:

Example of source code for the applet:

    <APPLET CODEBASE = "./" CODE = "com.java4less.rbarcode.BCApplet.class" ARCHIVE = "rbarcode.zip" NAME = "TestApplet" WIDTH = 400 HEIGHT = 170 HSPACE = 0 VSPACE = 0 ALIGN = middle >
    <PARAM NAME = "BARCODE" VALUE = "01234567">
    <PARAM NAME = "CODE_TYPE" VALUE = "EAN8">
    </APPLET>

Example of source code to create a jpeg file:

    BarCode bc=new BarCode();
    bc.code="01234567";
    bc.type=bc.EAN8;
    bc.setSize(400,200);
    barCodeEncoder(cb,"JPEG","d:\\test.jpg");

Example of url to execute the servlet:

    http://localhost:8080/examples/servlet/RBarCodeServlet?BARCODE=123456789012&WIDTH=50&HEIGHT=50&CODE_TYPE=EAN13&CHECK_CHAR=Y