Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Java > Bar code generation in java ...

Reply
Thread Tools

Bar code generation in java ...

 
 
amit.ashu.nir@gmail.com
Guest
Posts: n/a
 
      01-11-2006
Hi all I am new to the language and want to learn that how can one
generate barcode's in java... Please help me out..

Thanx Amit

 
Reply With Quote
 
 
 
 
NullBock
Guest
Posts: n/a
 
      01-11-2006
import java.util.*;

class BarCodes {
Map codes = new HashMap();

public BarCodes() {
codes.put("whiskey sour", "ws");
codes.put("gin and tonic", "gt");
codes.put("white russian", "wr");
//and so on
}

public String getCode(String which) {
return (String) codes.get(which);
}
}



Walter Gildersleeve
Freiburg, Germany

__________________________________________________ ____
http://linkfrog.net
URL Shortening
Free and easy, small and green.

 
Reply With Quote
 
 
 
 
Roedy Green
Guest
Posts: n/a
 
      01-11-2006
On 10 Jan 2006 22:56:12 -0800, ""
<> wrote, quoted or indirectly quoted someone
who said :

>Hi all I am new to the language and want to learn that how can one
>generate barcode's in java... Please help me out..


see http://mindprod.com/jgloss/barcodes.html
--
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
 
Reply With Quote
 
Ugo Matrangolo
Guest
Posts: n/a
 
      01-11-2006
Hi Amit,

there is an interesting feature in a lib that I used recently to
generate PDF from jsp documents.

It is the Bforeport package. It contains some functionality to generate
barcodes.

Google it for more informations or try
http://big.faceless.org/products/report

Best wishes,
ugo.

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Bar code generation in java ... amit.ashu.nir@gmail.com Java 1 01-11-2006 07:31 AM
disable title bar, status bar, and address bar of a window Matt HTML 9 08-23-2004 07:49 PM
javascript to disable the title bar, status bar, and address bar of a window Matt Javascript 9 08-23-2004 01:23 PM
Re: disable title bar, status bar, and address bar of a browser window John Hann ASP .Net 0 08-21-2004 05:07 AM
disable title bar, status bar, and address bar of a browser window Matt ASP .Net 0 08-21-2004 03:50 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57