我试图根据oracle网页上的打印示例打印一个列表,由于某种原因它只会打印列表的第一页
我从oracle获取了关于基本打印的打印样本: A Basic Printing Program
并在此修改它以解释我的意思更好一点
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.awt.print.*;
public class HelloWorldPrinter implements Printable, ActionListener {
public int print(Graphics g, PageFormat pf, int page) throws
PrinterException {
if (page > 0) { /* We have only one page, and 'page' is zero-based */
return NO_SUCH_PAGE;
}
Graphics2D g2d = (Graphics2D)g;
g2d.translate(pf.getImageableX(), pf.getImageableY());
g.drawString("1.Hello world!", 100, 100);
g.drawString("2.Hello world!", 100, 300);
g.drawString("3.Hello world!", 100, 600);
g.drawString("4.Hello world!", 100, 800);
g.drawString("5.Hello world!", 100, 1000);
g.drawString("6.Hello world!", 100, 1200);
g.drawString("7.Hello world!", 100, 1500);
return PAGE_EXISTS;
}
public void actionPerformed(ActionEvent e) {
PrinterJob job = PrinterJob.getPrinterJob();
job.setPrintable(this);
boolean ok = job.printDialog();
if (ok) {
try {
job.print();
} catch (PrinterException ex) {
}
}
}
public static void main(String args[]) {
UIManager.put("swing.boldMetal", Boolean.FALSE);
JFrame f = new JFrame("Hello World Printer");
f.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {System.exit(0);}
});
JButton printButton = new JButton("Print Hello World");
printButton.addActionListener(new HelloWorldPrinter());
f.add("Center", printButton);
f.pack();
f.setVisible(true);
}
}
这个例子只打印前4行...
答案 0 :(得分:0)
好吧,我发现这个链接帮助我解决了这个问题:Printing in Java
答案 1 :(得分:0)
我有一段相似的问题。 This example让我在正确分页方面给了我很多帮助。正如在我的问题here中所建议的那样,尝试复制教程示例并确保它有效,然后开始一次添加一个部分,直到它停止工作,这样你就可以看到问题所在。< / p>
编辑:糟糕,没有注意到答案来自OP。哦,好吧,如果有人碰到这个并且OP的答案不起作用,也许我会的。