gpt4 book ai didi

javascript - 在 JSP 中运行 pdftk

转载 作者:行者123 更新时间:2023-11-30 16:57:15 27 4
gpt4 key购买 nike

我在 jsp 页面 print.jsp 中有存储 pdf 文件名的数组值我想在打印前合并 pdf。

这是我的代码:

<%
try
{
String[] ids=request.getParameterValues("list");
for (String id:ids)
{
System.out.print(id);
}

//Runtime.getRuntime().exec("pdftk" +id+ "cat output output.pdf");
}
catch(Exception e)
{
System.out.println("fail");
}
%>

如何写入数组值来填充 pdftk 命令。请帮助我。

最佳答案

我想这就是你需要的......

try {
String[] ids = request.getParameterValues("list");
StringBuilder sb = new StringBuilder();
for (String id : ids) {
sb.append(" "+id);
System.out.print(id);
}

Runtime.getRuntime().exec("pdftk" + sb.toString() + " cat output output.pdf");
} catch (Exception e) {
System.out.println("PDF fail to merge");
}

关于javascript - 在 JSP 中运行 pdftk,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29483662/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com