java读取txt文件内容

Posted dawn-and-night

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java读取txt文件内容相关的知识,希望对你有一定的参考价值。

File file = new File(this.getClass().getResource("").getPath());
System.out.println(file.getPath());
String path=file.getPath();
//path=path.substring(0,path.indexOf("WEB-INF"))+"upload\\Excel"+"\\"+"import.txt"; //服务器专用
path=path.substring(0,path.indexOf("target"))+"src\\main\\webapp\\upload\\Excel"+"\\"+"import.txt";
String info=(sqlserver.readFile(path));
info=info.replaceAll("\r|\n", "");
info=info.substring(0,info.length()-1);
String info1[]=info.split("-");
String ip=DesUtil.decrypt(info1[0]);
String databaseName=DesUtil.decrypt(info1[1]);
String usename=DesUtil.decrypt(info1[2]);
String password=DesUtil.decrypt(info1[3]);

以上是关于java读取txt文件内容的主要内容,如果未能解决你的问题,请参考以下文章

JAVA 创建TXT文件,写入文件内容,读取文件内容

java读取txt文件

java读取多个txt文件内容,并按照文件名称排序

Java 如何读取txt文件的内容?

一个文件夹下的多个txt文件,然后随机读取其中一个txt文件的内容(java代码)?

java如何读取一个txt文件的所有内容