我正在尝试使用谷歌应用引擎在 java 中创建 pdf,但它还不起作用:
@SuppressWarnings("serial")
public class GuestbookServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
resp.setContentType("application/pdf");
try {
Document document = new Document();
PdfWriter.getInstance(document, new FileOutputStream("HelloWorld.pdf"));
document.open();
document.add(new Paragraph("Hello World"));
document.close();
} catch (DocumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
这是错误:
HTTP ERROR 500
Problem accessing /guestbook. Reason:
com/itextpdf/text/DocumentException
Caused by:
java.lang.NoClassDefFoundError: com/itextpdf/text/DocumentException
我已经阅读了 java.awt 和 java.nio 与 google appengine 的不兼容性。但我不知道该怎么做。谷歌应用引擎是否有任何特殊版本的 itext?或者你知道任何可以帮助我的线索吗?