如何将可滚动的jpanel保存为pdf或任何格式

时间:2013-04-28 10:13:12

标签: java swing pdf jpanel itext

我在jscrollpane中有一个jpanel,我想将jpanel的所有内容(包括一些labeltextarea)导出为pdf格式。目前我在jbutton上使用此代码:

Document document = new Document(PageSize.A4.rotate(),50,50,50,50);
try {
PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("C:\\Users\\Admin\\Desktop\\test1.pdf"));
document.open();
PdfContentByte contentByte = writer.getDirectContent();
//jp is the jpanel
PdfTemplate template = contentByte.createTemplate(jp.getWidth(), jp.getHeight());
Graphics2D g2 = template.createGraphics(jp.getWidth(),jp.getHeight());
g2.scale(0.8, 1);
        jp.printAll(g2); // also tried with jp.paint(g2), same result
        g2.dispose();

        //document.close();
contentByte.addTemplate(template, 5, 60);
} catch (Exception e) {
e.printStackTrace();
}
finally{
if(document.isOpen()){
    document.close();
}

}

输出:我在pdf中获得了jpanel的下半部分...(我制作了jpanel的sanpshot,但我的声誉不允许发布图片),上半部分正在被丢弃。我认为最后一部分是在使用单页时导出的。第一部分是写的(这只是一个猜测!) 为了查看整个jpanel我们需要滚动...如何将整个面板(从上到下)导出到pdf到多个页面,因为jpanel的高度超过A4页面。请帮忙。提前谢谢。

注意:我正在使用netbeans来开发我的gui和itextpdf-5.4.1。我是java编程的初学者。

1 个答案:

答案 0 :(得分:0)

您需要关闭PrintWriter并尝试添加addNotify,验证

jp.addNotify();
jp.setSize();
jp.validate();