Hello,
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 is working fine from command prompt....
But I'm 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
I'm still finding a solution to run this command using java....
Cheers !
Kunal