我真诚地不知道如何处理这个问题。我是这个库(PDFBox)的新手,我设法实现了代码(使用Java),可以打印任何选定的PDF。
现在我需要允许用户指定要打印的页面范围(如果需要)。 这是我处理打印的代码的一部分......
try
{
// TODO add your handling code here:
PrintService myPrintService = findPrintService(printerCmb.getSelectedItem().toString());
PrinterJob job = PrinterJob.getPrinterJob();
job.setPageable(doc);
job.setPrintService(myPrintService);
job.print( );
}
catch (PrinterException ex)
{
Logger.getLogger(PrintDialog.class.getName()).log(Level.SEVERE, null, ex);
}
我接下来该做什么?
这就是我创建“doc”的方式。
public Pageable doc; JFileChooser getPDF = new JFileChooser();
FileFilter filter = new FileNameExtensionFilter("PDF File", "pdf");
getPDF.setFileFilter(filter);
getPDF.setDialogTitle("Select a PDF file");
getPDF.showOpenDialog(getPDF);
try
{
Connection conn = null;
conn = DriverManager.getConnection(urlDist);
//SQLiteConnection new2 = new SQLiteConnection(urlDist, filename);
File selPdf = getPDF.getSelectedFile();
doc = PDDocument.load(selPdf);
if (doc != null)
{
count = doc.getNumberOfPages();
noPagestxt.setText(String.valueOf(count ));
filename = selPdf.getName();
fileNametxt.setText(filename);
pagesPrint.setEnabled(true);
}
// cleaning memory
// cleaning memory
}
catch (Exception ex)
{
Logger.getLogger(BioProject.class.getName()).log(Level.SEVERE, null, ex);
}
答案 0 :(得分:1)
所以,我使用用户 TilmanHausherr 的建议解决了这个问题。
我使用PageRanges()
函数指定了范围。这是代码。
...
job.setPageable(doc);
job.setPrintService(myPrintService);
PrintRequestAttributeSet attr = new HashPrintRequestAttributeSet();
PageRanges pageRng = new PageRanges( lower , upper);
attr.add(pageRng);
job.print(attr);
注意: upper
和lower
是来自用户的整数变量。
答案 1 :(得分:-1)
Below is the code which can be helpful for printing data from specific pages in the whole PDF file hope this would solve your issue.
PDDocument doc = PDDocument.load("Your PDF path");
PDFTextStripper stripper = new PDFTextStripper();
stripper.setStartPage( 1 );
stripper.setEndPage( Integer.MAX_VALUE );
List<String> ans= Arrays.asList(changeText.split(",\n"));
System.out.println(ans);