如何使用jodconverter阻止编辑我的pdf?

时间:2016-11-01 10:32:42

标签: java html pdf java-ee jodconverter

我正在使用jodconverter 3.0-beta4,我正在从HTML转换为PDF。 我的HTML包含一个表单,但我不想在我的PDF中包含可编辑的字段。我想如果我能让我的pdf只读,那么字段就会消失,但是我的代码不起作用。

我已尝试使用不同版本的PDF,但低于2的版本无法正确复制我的HTML。它将HTML转换为一些没有标记的输入,但我的无线电输入都被标记。

这是我的代码

DocumentFormat format = new DocumentFormat("PDF/A", "pdf", "application/pdf");

Map<String, Object> filterData = new HashMap<String, Object>();
filterData.put("SelectPdfVersion", 2);

Map<String, Object> properties = new HashMap<String, Object>();
properties.put("FilterData", filterData);
properties.put("FilterName", "writer_pdf_Export");
properties.put("Changes", 0);
properties.put("RestrictPermissions", true);

format.setStoreProperties(DocumentFamily.TEXT, properties);

OfficeDocumentConverter converter = new OfficeDocumentConverter(officeManager);

File htmlFile = File.createTempFile("tempHTML" , ".html");
org.apache.commons.io.FileUtils.writeStringToFile(htmlFile, html);
File pdfFile = File.createTempFile("tempPDF", ".pdf");
converter.convert(htmlFile, pdfFile, format);

1 个答案:

答案 0 :(得分:1)

有人可能会在将HTML input转换为PDF之前将其转换为静态文本。

由于您已经在使用包含HTML内容的字符串html

类似的东西:

// ☐ ☑ ☒ ☉ ◉ ○
html = html.replaceAll("(?si)<input type=\"radio\"[^>]*value=\"("
        + checkedValue + ")\"[^>]*>(.*?)</input>",
        "◉ $2");
html = html.replaceAll("(?si)<input type=\"radio\"[^>]*value=\"("
        + "[^\"]+" + ")\"[^>]*>(.*?)</input>",
        "○ $2");

可能你需要做更多,上面的代码依赖于value属性etcetera之前的type属性。