本文介绍了如何从D:目录加载文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在c://images/flower.jpg中有一些图像文件
我使用下面的代码来读取文件的输入流。
InputStream in = null;
FileInputStream fis = new FileInputStream( c ://images/flower.jpg跨度>);
in = fis;
fis.close();
但是流总是返回Null。请帮我看看文件流。
谢谢,
Baskar G
解决方案
Hi,
I have some image files in c://images/flower.jpg
I have used following code to read the input stream of the file.
InputStream in = null; FileInputStream fis = new FileInputStream("c://images/flower.jpg"); in = fis; fis.close();
But stream always returns Null . Please help me to read the file stream .
Thanks,
Baskar G
解决方案
这篇关于如何从D:目录加载文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!