Java(springboot) 读取txt文本内容代码实例

网友投稿 409 2022-12-14


Java(springboot) 读取txt文本内容代码实例

这篇文章主要介绍了java(springboot) 读取txt文本内容代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

代码如下

public class TxtTest {

private static final Logger logger = LoggerFactory.getLogger(TxtTest.class);

public static String readTxt(File file) throws IOExIwhcoVGception {

String s = "";

InputStreamReader in = new InputStreamReader(new FileInputStream(file),"UTF-8");

BufferedReader br = new BufferedReader(in);

StringBuffer content = new StringBuffer();

while ((s=br.readLine())!=null){

content = content.append(s);

}

return content.toString();

}

public static void main(String[] args) {

try {

        //通过绝对路径获取文件

String s1 = TxtTest.readTxt(new File("C:\\Users\\....\\du.txt"));

logger.info(s1);

        //spring boot中文件直接放在resources目录下

String s2 = TxtTest.readTxt(ResourceUtilshttp://.getFile("classpath:du.txt"));

logger.info(s2);

} catch (IOException e) {

e.printStackTrace();

}

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Mac中IntelliJ IDEA 2019.1注册过程分享
下一篇:java实现后台数据显示在前端
相关文章

 发表评论

暂时没有评论,来抢沙发吧~