WEB开发网
开发学院手机开发Android 开发 android开发中的文件操作 阅读

android开发中的文件操作

 2010-08-20 02:01:00 来源:WEB开发网   
核心提示:*/public String read(String fileName) throws Exception {FileInputStream fileInputStream = this.context.openFileInput(fileName);ByteArrayOutputStream byteArray =

*/

public String read(String fileName) throws Exception {

FileInputStream fileInputStream = this.context.openFileInput(fileName);

ByteArrayOutputStream byteArray = new ByteArrayOutputStream();

byte[] buffer = new byte[1024];

int len = 0;

while ((len = fileInputStream.read(buffer)) > 0) {

byteArray.write(buffer, 0, len);

};

return byteArray.toString();

}

}

上一页  1 2 

Tags:android 开发 文件

编辑录入:coldstar [复制链接] [打 印]
赞助商链接