3

我有两个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) {

        }
    }
}
4

3 回答 3

2

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

这将解决问题。

于 2011-10-24T16:48:56.177 回答
0

在示例仓库中,这是一个从文件中获取字节的快速函数:

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); }
于 2011-09-28T20:26:11.290 回答
0

为了背负上面关于重新排序文件内容的答案,这是我在 DST Output(一家非常大的印刷和邮件公司)工作时提出的一个建议工具。

我制作了一个名为“afp_dd”的实用程序,它的工作方式类似于 unix 的“dd”命令,允许我在命令行上指定记录跳过和计数值,以提取在记录边界上中断的子文件(标准 dd 程序需要固定大小记录,而不是在每条记录的开头附近带有长度指示符的可变大小)。我可以通过我们的 AFP 转储程序对子文件进行管道检查以检查它们,然后使用输出子文件作为输入来创建更改的文件。

于 2012-12-08T20:21:05.927 回答