}
// Localiza todas as impressoras com suporte a impress�o de PDFs e com suporte a cores
DocFlavor pdfFlavor = DocFlavor.BYTE_ARRAY.PDF;
AttributeSet attributes = new HashAttributeSet();
attributes.add(Chromaticity.COLOR);
PrintService[] pdfPrinters = PrintServiceLookup.lookupPrintServices(pdfFlavor, attributes);
for (int i = 0; i < pdfPrinters.length; i++) {
System.out.println(pdfPrinters[i].getName());
}