在jsp页面上单击一个按钮,然后把jsp转为pdf
在jsp页面上单击一个按钮,然后把jsp转为pdf怎么实现?
--------------------编程问答--------------------
字节流读取文件,itextpdf包完成导出
--------------------编程问答--------------------
有没有大虾贡献下代码啊。。。。我也在烦这个问题
--------------------编程问答--------------------
import java.io.FileOutputStream;
import java.io.FileReader;
import java.util.ArrayList;
import com.lowagie.text.Document;
import com.lowagie.text.Element;
import com.lowagie.text.html.易做图parser.HTMLWorker;
import com.lowagie.text.html.易做图parser.StyleSheet;
import com.lowagie.text.pdf.PdfWriter;
public class MainClass {
public static void main(String[] args) throws Exception {
Document document = new Document();
StyleSheet st = new StyleSheet();
st.loadTagStyle("body", "leading", "16,0");
PdfWriter.getInstance(document, new FileOutputStream("html2.pdf"));
document.open();
ArrayList p = HTMLWorker.parseToList(new FileReader("example.html"), st);
for (int k = 0; k < p.size(); ++k)
document.add((Element) p.get(k));
document.close();
}
}
--------------------编程问答--------------------
参考试试
补充:Java , Java EE