アプリケーションで HTML ファイルから PDF を作成しようとしています。私のアプリケーション全体は、Java 用の Google App-Engine(GAE) に取り組んでいます。
Flying Saucer ライブラリは GAE をサポートしていますか?
誰かがそれを知っているなら、私に解決策を送ってください。
アプリケーションで HTML ファイルから PDF を作成しようとしています。私のアプリケーション全体は、Java 用の Google App-Engine(GAE) に取り組んでいます。
Flying Saucer ライブラリは GAE をサポートしていますか?
誰かがそれを知っているなら、私に解決策を送ってください。
Flying Saucer が必要とするのは、pdf エクスポート ファイルを作成するための適切な形式の XML (この場合は html) です。GAE はサーブレットをサポートしているため、
https://developers.google.com/appengine/docs/java/#Java_Requests_and_servlets
Flying Saucer エンジンをサーブレットに組み込むのは難しくないかもしれません。このようなもの
import java.io.IOException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class MyFSServlet extends HttpServlet {
@Override
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
try {
StringBuffer buf = new StringBuffer();
buf.append("<html YOUR HTML CODE HERE>"); //could be retrieve from somewhere else
DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document doc = builder.parse(new StringBufferInputStream(buf.toString()));
ITextRenderer renderer = new ITextRenderer();
renderer.setDocument(doc, null);
renderer.layout();
OutputStream os = resp.getOutputStream();
renderer.createPDF(os);
os.close();
} catch (Exception ex) {
ex.printStackTrace();
}
}
}