在xPages中使用iText Library,如何调整列宽?如果我使用table.setWidths(30,10,30),我得到以下错误:错误:com.ibm.jscript.InterpretException:脚本解释器错误,行= 52,col = 7:Java方法'setWidths(数字,数字) ,数字)'on java class'com.itextpdf.text.pdf.PdfPTable'not found
答案 0 :(得分:1)
将您的代码包装到一个Java类中,该类只需要使用流和文档作为参数调用一个函数
答案 1 :(得分:0)
看起来setWidths需要浮点数。这有用吗?
table.setWidths(parseFloat(30),parseFloat(10),parseFloat(30))