gpt4 book ai didi

java - itext7中如何更改附件添加时间的显示顺序

转载 作者:行者123 更新时间:2023-12-02 11:15:19 26 4
gpt4 key购买 nike

我想更改创建的 pdf 中的附件文件顺序,附件默认按名称显示,如何更改添加时间显示的内容?

这是我的实现方法:

@Override
public boolean attachFile(String src, String dest, List<SysItemfile> attachmentpaths) {
try {
PdfName name = new PdfName(src);
PdfDocument pdfDoc = new PdfDocument(new PdfReader(src), new PdfWriter(dest));
List<String> descs = new ArrayList<String>();
int i = 0;
int j = 1;
for (SysItemfile attachmentpath : attachmentpaths) {
String filename = attachmentpath.getFilename();
//test for the file name
System.out.println("filename:"+filename);

if (descs.contains(attachmentpath.getFilename())) {
//get the file suffix
String suffix = filename.substring(filename.lastIndexOf(".") + 1);
String realname = filename.substring(0,filename.lastIndexOf("."));
filename = realname+i+"."+suffix;
i++;
} else {
descs.add(attachmentpath.getFilename());
}
PdfFileSpec spec = PdfFileSpec.createEmbeddedFileSpec(pdfDoc, attachmentpath.getFileurl(),
filename, filename, name, name);
// the first parameter is discription
pdfDoc.addFileAttachment(filename, spec);

}
pdfDoc.close();
} catch (IOException e) {
logger.error("attachFile unsuccess!");
logger.error(e.getLocalizedMessage());
return false;
}
return true;
}

之后,当我向 pdf 添加附件时,无法更改附件显示的顺序。
我该怎么办?

最佳答案

只要您仅添加附件,PDF 标准就不允许规定 PDF 查看器在显示附件时使用的排序顺序。

另一方面,如果您将 PDF 设为可移植集合(也称为组合),则可以指定架构(即详细列表中的字段)和排序顺序(按这些字段中的一个或组合)。

您可以轻松地将带有附件的 PDF 制作为可移植集合,其中名称和修改日期按后者排序,如下所示:

try (   PdfReader reader = new PdfReader(...);
PdfWriter writer = new PdfWriter(...);
PdfDocument document = new PdfDocument(reader, writer)) {
PdfCollection collection = new PdfCollection();
document.getCatalog().setCollection(collection);
PdfCollectionSchema schema = new PdfCollectionSchema();
PdfCollectionField field = new PdfCollectionField("File Name", PdfCollectionField.FILENAME);
field.setOrder(0);
schema.addField("Name", field);
field = new PdfCollectionField("Modification Date", PdfCollectionField.MODDATE);
field.setOrder(1);
schema.addField("Modified", field);
collection.setSchema(schema);
PdfCollectionSort sort = new PdfCollectionSort("Modified");
collection.setSort(sort);
}

( SortAttachments 测试 testAttachLikeGeologicaledWithCollection)

实际上,您甚至可以使用类型 PdfCollectionField.TEXTPdfCollectionField.DATEPdfCollectionField.NUMBER 来定义自定义字段种类。您可以通过 setCollectionItem 方法在 PdfFileSpec 上设置此类自定义字段的值。

关于java - itext7中如何更改附件添加时间的显示顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50323921/

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