gpt4 book ai didi

java.awt.print 只打印第一页

转载 作者:行者123 更新时间:2023-12-02 07:57:04 25 4
gpt4 key购买 nike

我正在尝试根据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 行...

最佳答案

我有一段时间遇到类似的问题。 This example帮助我正确分页。正如我的问题中所建议的,here ,尝试复制教程示例并确保它有效,然后开始一次添加您的内容直到它停止工作,这样您就可以看到问题出在哪里。

编辑:哎呀,没有注意到答案来自OP。哦,好吧,如果有人遇到这个问题并且OP的答案不起作用,也许我的答案会起作用。

关于java.awt.print 只打印第一页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8166572/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com