我对 Java 很陌生,我最近正在制作一个程序,它从一个目录读取图像文件(jpg),并将它们写入(复制)到另一个目录。
我不能使用 imageio 或移动/复制方法,我还必须检查由 R/W 操作引起的耗时。
问题是我在下面编写了一些代码并且它运行了,但是我在目标中的所有输出图像文件都有 0 字节并且根本没有内容。打开结果图像时,我只能看到没有字节的黑屏。
public class image_io {
public static void main(String[] args)
{
FileInputStream fis = null;
FileOutputStream fos = null;
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
// getting path
File directory = new File("C:\\src");
File[] fList = directory.listFiles();
String fileName, filePath, destPath;
// date for time check
Date d = new Date();
int byt = 0;
long start_t, end_t;
for (File file : fList)
{
// making paths of source and destination
fileName = file.getName();
filePath = "C:\\src\\" + fileName;
destPath = "C:\\dest\\" + fileName;
// read the images and check reading time consuming
try
{
fis = new FileInputStream(filePath);
bis = new BufferedInputStream(fis);
do
{
start_t = d.getTime();
}
while ((byt = bis.read()) != -1);
end_t = d.getTime();
System.out.println(end_t - start_t);
} catch (Exception e) {e.printStackTrace();}
// write the images and check writing time consuming
try
{
fos = new FileOutputStream(destPath);
bos = new BufferedOutputStream(fos);
int idx = byt;
start_t = d.getTime();
for (; idx == 0; idx--)
{
bos.write(byt);
}
end_t = d.getTime();
System.out.println(end_t - start_t);
} catch (Exception e) {e.printStackTrace();}
}
}
}
FileInput/OutputStream 不支持图像文件吗?还是我的代码中有一些错误?
请有人帮我..