I am using the following code to give print to a network Lipi Printer (cc2 is printer name)
Process p = Runtime.getRuntime ().exec ("lp -dcc2 abcd.txt");
BufferedReader reader = new BufferedReader (
new InputStreamReader (p.getInputStream ()));
String line;
while ((line = reader.readLine ()) != null) {
System.out.println (line);
}
The problem starts when I run this in loop(> 4000) and a few of the prints get lost in the network and don't get printed.
I want to catch those lost prints and reprint them.
How can I get the printer to acknowledge the print has been received.