本文主要是介绍Android Java InputStream和File相互转化,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
读取一个文件的数据流。
//创建文件的file对象
File file = new File(path);
//将file转换成InputStream对象
InputStream is = new FileInputStream(path);
//将file数据流写进databaseFilename文件
FileOutputStream fos = new FileOutputStream(databaseFilename);
byte[] buffer = new byte[8192];
int count = 0;
while ((count = is.read(buffer)) > 0) {
fos.write(buffer, 0, count);
}
fos.close();
is.close();
这篇关于Android Java InputStream和File相互转化的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!