0

データベースにバイト配列として保存するために、Javaでさまざまな大きなtiffファイルを作成する必要があります。古いファイルをコピーして変更し、新しいファイルを作成することしかできませんでしたが、ファイル(TIFFWriter.createTIFFFromImages)を作成するには時間がかかりすぎます。私に何ができる?

public byte[] CreateTiff() throws IOException {
    try{
        File orginialFile = new File("../Dist/dist/attachment/orginialTifFile.TIF");
        if(orginialFile!=null){
            TIFFReader reader = new TIFFReader(orginialFile);
            int length = reader.countPages();
            BufferedImage[] images = new BufferedImage[length];

            for (int i = 0; i < length; i++) {
                images[i] = (BufferedImage)reader.getPage(i);
                int rgb = 0x000000; // black

                Random rand = new Random();
                int x= rand.nextInt(images[i].getHeight()/2);
                int y= rand.nextInt(images[i].getWidth()/2);

                images[i].setRGB(x, y, rgb);
            }

            File newAttachmentFile = new File("../Dist/dist/attachment/tempFile.tif");
            TIFFWriter.createTIFFFromImages(images, newAttachmentFile);
            byte[] b=  getBytesFromFile(newAttachmentFile);
            return b;
        }
    }catch(Exception e){
        System.out.println("failed to add atachment to request");
        e.printStackTrace();
        return null;
    }
    return null;
}

public static byte[] getBytesFromFile(File file) throws IOException{ InputStream is = new FileInputStream(file); // ファイルのサイズを取得 long length = file.length();

    if (length > Integer.MAX_VALUE) {
        return null;
    }

    // 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) {
        return null;
    }

    // Close the input stream and return bytes
    is.close();
    return bytes;
}

ありがとう

4

1 に答える 1

0

データをファイルに書き込んでから読み取るのは非効率的です。それを避けるようにしてください。メソッドに File を指定する必要がある場合は、パイプ、arraywriter、またはそのようなものを outputStream として返す偽の File クラスを作成します。

于 2010-12-05T09:37:52.120 に答える