Hello,
Barcode4J is very useful in generating barcode and creating images in various formats.....
Now for printing the barcode labels I was trying to print jpeg images to the thermal printer...
There was a mistake in my process....
There is no need to print image on the barcode labels....
since the resolution of my thermal printer is 203 dpi...the images will not come properly...
Now, I used the Software CD that came with my thermal printer to create a customized label with Header, footer and the barcode...
Then I crated the PRN file by checking 'print to file' option....
After that I used the PRN file as a template and wrote code for creating prn file using my java application....
I created a separate class for this purpose . In this I used a StringBuilder variable and stored the contents of the PRN file...and used
String variables for label and text fields....
Then I used the command COPY /B <prn-file path> <printer network path> to print the labels...
This command was working fine from command prompt....
But I was having problems in executing the same command with RunTime.getRunTime.exec() method...
Error:
java.io.IOException: Cannot run program "COPY": CreateProcess error=2, The system cannot find the file specified
Then Rob Prime helped me out and suggested the following command....
cmd /c COPY /b <prn-file-path> <printer-network-path>
I tried it and everything is now working
Cheers !
Kunal