主GUI是基于SWT的。 我正在通过点击按钮从printPDF类中运行打印操作。
public void startPDFPrint() throws Exception {
Display.getCurrent().syncExec(
new Runnable() {
public void run(){
try {
new AplotPdfPrintLocal().printPDF("c:\\temp\\file.pdf", "PDF Print Job");
}
catch (IOException e) {
e.printStackTrace();
}
catch (PrinterException e) {
e.printStackTrace();
}
}
});
}
printPDF类没有任何组件或GUI。它只是基本上创建了一个运行打印作业的类。
public class PDFPrintPage implements Printable {
该类中只有两个方法
public void printFile(String filename) throws IOException { (setups the print)
public int print(Graphics g, PageFormat format, int index)
throws PrinterException {
在printFile方法中,有一行代码可以打开本地打印机对话框。
pjob.printDialog()
该对话框是基于AWT的。
我怎样才能让这个对话框打开,让我的用户可以选择打印机和拷贝数量?
我已经阅读了SWT_AWT桥文档,看起来你需要将AWT嵌入到一个SWT组件中,但我的类没有任何组件,我需要创建一个组件方法并在组件中运行printFile代码吗?
我是否需要创建一个组件方法并在组件中运行printFile代码?
我知道如果我能搞清楚这一块,也会对我的其他问题有所帮助。
EDIT
请看看我的代码,告诉我哪里错了。 它符合并运行,但我在Dialog行得到SWT Thread异常。
public class PDFPrintPage extends ApplicationWindow{
private String fileURL;
private PageFormat pfDefault;
private PrinterJob pjob;
private PDFFile pdfFile;
public PDFPrintPage(Shell parent, String inputFileName) {
super(parent);
this.fileURL = inputFileName;
}
public void run() {
setBlockOnOpen(true);
open();
Display.getCurrent().dispose();
}
protected Control createContents(Composite parent) {
final Composite swtAwtComponent = new Composite(parent, SWT.EMBEDDED);
final java.awt.Frame frame = SWT_AWT.new_Frame( swtAwtComponent );
final javax.swing.JPanel panel = new javax.swing.JPanel( );
frame.add(panel);
JButton swingButton = new JButton("Print");
panel.add(swingButton);
swingButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent actionevent) {
try {
printFile(fileURL, frame);
}
catch (IOException e) {
e.printStackTrace();
}
}
});
return swtAwtComponent;
}
public void printFile(String filename, Frame panel) throws IOException {
File file = new File(filename);
FileInputStream fis = new FileInputStream(file);
FileChannel fc = fis.getChannel();
ByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
pdfFile = new PDFFile(bb); // Create PDF Print Page
final PrintPage pages = new PrintPage(pdfFile);
pjob = PrinterJob.getPrinterJob();
pfDefault = PrinterJob.getPrinterJob().defaultPage();
Paper defaultPaper = new Paper();
defaultPaper.setImageableArea(0, 0, defaultPaper.getWidth(), defaultPaper.getHeight());
pfDefault.setPaper(defaultPaper);
pjob.setJobName(file.getName());
final Dialog awtDialog = new Dialog(panel);
Shell parent = getParentShell();
Shell shell = new Shell(parent, SWT.APPLICATION_MODAL | SWT.NO_TRIM);
shell.setSize(100, 100);
shell.addFocusListener(new FocusAdapter() {
@Override
public void focusGained(FocusEvent e) {
awtDialog.requestFocus();
awtDialog.toFront();
}
});
//if (pjob.printDialog()) {
pfDefault = pjob.validatePage(pfDefault);
Book book = new Book();
book.append(pages, pfDefault, pdfFile.getNumPages());
pjob.setPageable(book);
try {
pjob.print();
}
catch (PrinterException exc) {
System.out.println(exc);
}
//}
}
class PrintPage implements Printable {
private PDFFile file;
PrintPage(PDFFile file) {
this.file = file;
}
public int print(Graphics g, PageFormat format, int index) throws PrinterException {
int pagenum = index + 1;
if ((pagenum >= 1) && (pagenum <= file.getNumPages())) {
Graphics2D g2 = (Graphics2D) g;
PDFPage page = file.getPage(pagenum);
Rectangle imageArea = new Rectangle((int) format.getImageableX(), (int) format.getImageableY(),
(int) format.getImageableWidth(), (int) format.getImageableHeight());
g2.translate(0, 0);
PDFRenderer pgs = new PDFRenderer(page, g2, imageArea, null, null);
try {
page.waitForFinish();
pgs.run();
} catch (InterruptedException ie) {
}
return PAGE_EXISTS;
}
else {
return NO_SUCH_PAGE;
}
}
}//End PrintPage Class
}//End PDFPrintPage Class
我可能在完全错误的地方加入了你的建议代码。 我的想法是在focusGained(FocusEvent e)方法中添加printDialog调用。
当你打开你的打印机对话框时,你需要打开一个大小为零的shell,这样它看起来就像你的主SWT Shell是不活动的,而你的Swing模态对话框在它上面。同样地,当你关闭你的swing对话框时,你需要关闭零大小的Shell。
java.awt.Dialog awtDialog = ...
Shell shell = new Shell(parent, SWT.APPLICATION_MODAL | SWT.NO_TRIM);
shell.setSize(0, 0);
shell.addFocusListener(new FocusAdapter() {
public void focusGained(FocusEvent e) {
awtDialog.requestFocus();
awtDialog.toFront();
}
});
由于我没有名气把它加为评论,我就把答案贴出来代替。对于其他偶然发现的人来说,寻找 "Control类型中的方法addFocusListener(FocusListener)不适用于参数(new FocusAdapter(){}) "的问题。
问题是你导入的东西不对。你可能导入了awt FocusAdapter而不是swt的,或者相反。