为什么同样的JAVA程序在Windows和Linux等不同平台上的工作方式不同?

时间:2015-05-08 01:59:21

标签: java linux windows amazon-ec2

JAVA程序的相同和平在不同平台上的工作方式不同。

例如,我编写了一个JAVA,用于将存储在文件夹中的不同Tiff文件组合到Multi Page Tiff。

请在下面找到该计划。

 public String merge(String dirPath) {
        String inputDir = dirPath;
        File faxSource = new File(inputDir);
        File file[] = faxSource.listFiles();

        int numImages = file.length;
        String name = "";
        List<BufferedImage> images = new ArrayList<BufferedImage>();
        Arrays.sort(file, new Comparator<File>() {
            public int compare(File f1, File f2) {
                return Long.compare(f1.lastModified(), f2.lastModified());
            }
        });
        try {
            for (int i = 0; i < numImages; i++) {
                name = name + file[i].getName();
                SeekableStream ss = new FileSeekableStream(file[i]);
                ImageDecoder decoder = ImageCodec.createImageDecoder("tiff",
                        ss, null);

                int numPages = decoder.getNumPages();
                for (int j = 0; j < numPages; j++) {
                    PlanarImage op = new NullOpImage(
                            decoder.decodeAsRenderedImage(j), null, null,
                            OpImage.OP_IO_BOUND);
                    images.add(op.getAsBufferedImage());
                }
            }

            // name=UUID.randomUUID().toString()+".tiff";

            TIFFEncodeParam params = new TIFFEncodeParam();
            params.setCompression(TIFFEncodeParam.COMPRESSION_DEFLATE);
            OutputStream out = new FileOutputStream(inputDir + "\\" + name);
            ImageEncoder encoder = ImageCodec.createImageEncoder("tiff", out,
                    params);
            // encoder.
            List<BufferedImage> imageList = new ArrayList<BufferedImage>();
            for (int i = 1; i < images.size(); i++) {
                imageList.add(images.get(i));
            }
            params.setExtraImages(imageList.iterator());
            encoder.encode(images.get(0));
            out.close();
        } catch (Exception e) {

        }
        return inputDir + "\\" + name;
    }

假设该文件夹包含4个tiff图像(A.tiff,B.tiff,C,.tiff,D.tiff)。这些Tiff文件按顺序从S#下载。

如果我在Windows Server中运行上述程序它按照A.tiff + B.tiff + C.tiff + D.tiff 的顺序进行整理。

如果我在Amazon EC2 Linux中运行相同的程序,则会获得输出A.tiff + B.tiff + D.tiff + C.tiff

任何想法为什么相同的JAVA代码在Windows和Linux中的运行方式不同?

1 个答案:

答案 0 :(得分:2)

检查Linux机器上的文件系统;我猜它正在使用的EXT3修改日期的精度为1秒。如果您在一秒钟内下载两个文件,它们可能都具有相同的时间。

另一方面,Windows通常使用NTFS,文件时间精度为100纳秒。