此代码一直提供java.awt.HeadlessException
,我不知道为什么
我正在使用netbeans7.4
此代码用于在添加文件选择器之前工作
我曾经给过一条静态路径
代码:
JButton open = new JButton();
JFileChooser fc = new JFileChooser();
fc.setCurrentDirectory(new java.io.File("C:\\Users\\theOPOne\\Desktop"));
fc.setDialogTitle("Choose path !");
fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
if (fc.showOpenDialog(open) == JFileChooser.APPROVE_OPTION){
}
Document document=new Document();
PdfWriter.getInstance(document,new FileOutputStream(fc.getSelectedFile().getAbsolutePath()));
document.open();
document.add(new Paragraph("Hello world this is my first PDF"));
document.close(); }