我有一个 AFP 文件,我需要使用 c# 获取文件中存在的页面计数。基于文件计数,我必须为 AFP 文件创建打印队列,所以可以使用 c# 或 java 吗?我没有找到任何支持代码来获取互联网计数。
问问题
506 次
1 回答
1
afplib有一些示例代码可以做到这一点。基本上,您需要遍历 AFP 中的所有结构化字段并计算 BPG(起始页)的数量。此片段取自此处:
try (AfpInputStream in = new AfpInputStream(
new BufferedInputStream(new FileInputStream(s)))) {
int pages = 0;
int resources = 0;
SF sf;
while((sf = in.readStructuredField()) != null) {
log.trace("{}", sf);
switch(sf.getId()) {
case SFName.BPG_VALUE:
pages++;
if(progress && pages % 1000 == 0)
System.out.print(String.format("\r%06d %04d %s", pages, resources, s));
break;
case SFName.BRS_VALUE:
resources++;
if(progress && resources % 1000 == 0)
System.out.print(String.format("\r%06d %04d %s", pages, resources, s));
break;
}
}
if(progress)
System.out.print("\r");
System.out.println(String.format("%06d %04d %s", pages, resources, s));
} catch (Exception e) {
}
于 2019-01-10T22:21:37.103 回答