java-IO读文件
程序员文章站
2022-04-08 17:10:05
...
/**
* @param filename
* 文件名全路径
* @return
* @throws Exception
*/
public static String readFile(String filename) throws Exception {
// 以字节流方法读取文件
FileInputStream fis = null;
try {
File file = new File(filename); //读文件
String filevalue = "";//文件内容
if (file.isFile()) {
try {
fis = new FileInputStream(file);
// 设置一个,每次 装载信息的容器
byte[] buf = new byte[1024];
// 定义一个StringBuffer用来存放字符串
StringBuffer sb = new StringBuffer();
// 开始读取数据
int len = 0;// 每次读取到的数据的长度
while ((len = fis.read(buf)) != -1) {// len值为-1时,表示没有数据了
// append方法往sb对象里面添加数据
sb.append(new String(buf, 0, len, "GBK"));
}
filevalue = sb.toString();
} catch (IOException e) {
e.printStackTrace();
}
} else {
System.out.println("文件不存在!");
return null;
}
System.out.println("文件内容:"+filevalue);
return filevalue;
} catch (Exception e) {
throw e;
} finally {
fis.close();
}
}