Google App Engineを使用して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 との非互換性を読みました。しかし、私はそれを行う方法がわかりません。Google App Engine への itext の特別なバージョンはありますか? または、私を助けることができる手がかりを知っていますか?