我有两个AFP文件,我想把它们连接在一起,我怎么能做到这一点。我已经编写了java代码来连接它们,使用BufferedInputStream和BufferedOutputStream,结果AFP格式不正确。我甚至尝试使用linux cat,但产生同样不正确的结果。请帮助。我不认为问题是我的java代码,但我张贴下面的代码只是以防万一。
注意:一个奇怪的事情是,如果我改变连接的顺序,它会产生正确的格式输出。例如,如果我连接A.afp然后B.afp,那么输出是混乱的,但如果我连接B.afp,然后A.afp然后它会产生正确的格式结果。但是我需要A.afp出现在B.afp之前
public static void main(String[] args) {
String filePath1 = "C:\dev\harry\ETCC_data\3199_FI_20_20110901143009.afp";
String filePath2 = "C:\dev\harry\ETCC_data\3643_FI_49_20110901143006.afp";
ConcatenateMain cm = new ConcatenateMain();
cm.concate(filePath1, filePath2);
}
private void concate(String filePath1, String filePath2){
BufferedInputStream bis1 = null;
BufferedInputStream bis2 = null;
FileInputStream inputStream1 = null;
FileInputStream inputStream2 = null;
FileOutputStream outputStream = null;
BufferedOutputStream output = null;
try{
inputStream1 = new FileInputStream(filePath1);
inputStream2 = new FileInputStream(filePath2);
bis1 = new BufferedInputStream(inputStream1);
bis2 = new BufferedInputStream(inputStream2);
List<BufferedInputStream> inputStreams = new ArrayList<BufferedInputStream>();
inputStreams.add(bis1);
inputStreams.add(bis2);
outputStream = new FileOutputStream("C:\dev\harry\ETCC_data\output.afp");
output = new BufferedOutputStream(outputStream);
byte [] buffer = new byte[BUFFER_SIZE];
for(BufferedInputStream input : inputStreams){
try{
int bytesRead = 0;
while ((bytesRead = input.read(buffer, 0, buffer.length)) != -1)
{
output.write(buffer, 0, bytesRead);
}
}finally{
input.close();
}
}
}catch(IOException e){
}finally{
try {
output.close();
} catch (IOException e) {
}
}
}
由Xenos D2e软件生成的AFP默认在页面顶部包含内联资源,如下所示
AFP file 1 resources AND AFP file 2 resources
AFP file 1 content AFP file 2 content
然而,当我尝试将这两个文件连接在一起时,一些资源将位于连接文件的中间,因此混淆了结果
AFP file 1 resources
AFP file 1 content
AFP file 2 resources ------> resources should not be in the middle page
AFP file 2 content
因此,解决方案是将所有资源导出到一个外部文件,然后您可以按照以下方式进行连接
AFP file resources
AFP file 1 content
AFP file 2 content
从示例库中,这里有一个从文件中获取字节的快速函数:
public static byte[] getBytesFromFile(File file) throws IOException {
InputStream is = new FileInputStream(file);
// Get the size of the file
long length = file.length();
// Create the byte array to hold the data
byte[] bytes = new byte[(int)length];
// Read in the bytes
int offset = 0;
int numRead = 0;
while (offset < bytes.length
&& (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
offset += numRead;
}
// Ensure all the bytes have been read in
if (offset < bytes.length) {
throw new IOException("Could not completely read file "+file.getName());
}
// Close the input stream and return bytes
is.close();
return bytes;
}
然后加载它们并将其写入文件
try {
FileOutputStream fos = new FileOutputStream("C:\dev\harry\ETCC_data\output.afp");
byte[] bytes1 = getBytesFromFile(new File(filePath1));
byte[] bytes2 = getBytesFromFile(new File(filePath2));
fos.write(bytes1);
fos.write(bytes2);
fos.flush();
fos.close();
}
catch(FileNotFoundException ex) { System.out.println("FileNotFoundException : " + ex); }
catch(IOException ioe) { System.out.println("IOException : " + ioe); }
为了借鉴上面关于重新排序文件内容的答案,这里是我在DST Output工作时制作的一个建议工具(一个非常大的打印&邮件公司).
我做了一个名为"afp_dd"的实用程序,它像unix的"dd"命令一样工作,允许我在命令行上指定记录跳过和计数值,以提取在记录边界上打破的子文件(标准dd程序期望固定大小的记录,而不是在每个记录开始附近的长度指示器的可变大小)。我可以通过AFP转储程序对子文件进行管道检查,然后使用输出子文件作为输入来创建修改后的文件。