gpt4 book ai didi

java - 如何在java独立应用程序中将格式化输出打印到打印机

转载 作者:行者123 更新时间:2023-12-01 23:45:29 24 4
gpt4 key购买 nike

基本上,我正在创建一个java独立应用程序,学生首先在其中提供他的全部详细信息。

当单击打印按钮时,我想以指定格式打印学生给出的一些数据

喜欢:

//logo goes here


regn no:
regn date:
name:
phnno:
mail:

怎么做?

最佳答案

如果您想使用 Java 进行任何格式的打印而不是纯文本,则需要使用 javax.print。它与 2D 图形非常相似。

查看官方教程 http://docs.oracle.com/javase/tutorial/2d/printing/了解如何做到这一点。

来自http://docs.oracle.com/javase/tutorial/displayCode.html?code=http://docs.oracle.com/javase/tutorial/2d/printing/examples/HelloWorldPrinter.java (未经测试):

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;
}

/* User (0,0) is typically outside the imageable area, so we must
* translate by the X and Y values in the PageFormat to avoid clipping
*/
Graphics2D g2d = (Graphics2D)g;
g2d.translate(pf.getImageableX(), pf.getImageableY());

/* Now we perform our rendering */
g.drawString("Hello world!", 100, 100);

/* tell the caller that this page is part of the printed document */
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) {
/* The job did not successfully complete */
}
}
}

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);
}
}

关于java - 如何在java独立应用程序中将格式化输出打印到打印机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17132425/

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