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
NullBock - 11 Jan 2006 07:41 GMT
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);
}
}
:P
Walter Gildersleeve
Freiburg, Germany
______________________________________________________
http://linkfrog.net
URL Shortening
Free and easy, small and green.
Roedy Green - 11 Jan 2006 07:46 GMT
On 10 Jan 2006 22:56:12 -0800, "amit.ashu.nir@gmail.com"
<amit.ashu.nir@gmail.com> 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

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
Ugo Matrangolo - 11 Jan 2006 08:20 GMT
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.