1 Star 0 Fork 0

Jim/learngit-gitee

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
按指定编码格式读取文件内容 587 Bytes
一键复制 编辑 原始数据 按行查看 历史
TobuGone 提交于 2018-07-25 16:49 . 按指定编码格式读取文件内容
/**
* 按指定编码格式读取文件内容
* @author huzi
* @date 2018年7月25日
* @param path 需读取文件的路径
* @param encoding 要转成的编码格式
* @return
* @throws IOException
*/
public static String read(InputStream inputStream, String encoding) throws IOException {
String content = "";
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, encoding));
String line = null;
while ((line = reader.readLine()) != null) {
content += line + "\n";
}
reader.close();
return content;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liangwanquan/learngit-gitee.git
git@gitee.com:liangwanquan/learngit-gitee.git
liangwanquan
learngit-gitee
learngit-gitee
master

搜索帮助