我的代码有点像这样,
Row<PDPage> row = table.createRow(rowHeight);
Cell<PDPage> cell = otherDocumentsRow.createCell(30, "Other Documents");
String str = "Attachment link here";
cell = row.createCell(70, str);
现在,我希望插入一个指向某个位置的超链接文本(www.example.com),而不是str文本。这是可能的还是有解决方法。
提前感谢您,并期待收到您的回复