I have a problem, what happens is I want to send to print a file at a printer, for which I get the IP address of the printers I have networked and choose the first, here is the code for this:
PrintService[] service = PrinterJob.lookupPrintServices();// list of ip address
PrinterJob printJob = PrinterJob.getPrinterJob();
printJob.setPrintService(service[0]);//I get the first address
But now I want to assign the string that contains the IP address:\\10.100.20.26\My printer of the printer that I want, and not the network that I have, and it is there that do not know how , someone please help me, I've searched for the solution, but I have not had good results.