java 根据路径读取txt文件的办法

[size=medium]根据txt文件路径,读取内容的方法:
1.txt文件在本地磁盘中存放:[/size]

public static void test1() {
String path = "d:\\testfile.txt";
File file = new File(path);
try {
BufferedReader rd = new BufferedReader(new FileReader(file));
String str = "";
String s = rd.readLine();
while (null != s) {
str += s + "<br/>";
s = rd.readLine();
}
System.out.println(str);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}

[size=medium]2.从数据库中获取txt文件的路径后,然后把内容显示到页面上的方法:[/size]这个方法是struts2的Action类中的方法。


/**从数据库中读取txt文件--------------start------------------------**/
String str = "";
for(T_multimedia multimedia:list_multimedia){
if(multimedia.getMulttype()==4){
@SuppressWarnings("deprecation")
String path = ServletActionContext.getRequest().getRealPath(multimedia.getMultpath()); //获取文本的绝对路径
File file = new File(path);
try {
BufferedReader rd = new BufferedReader(new FileReader(file));
String s = rd.readLine();
while (null != s) {
str += s;
s = rd.readLine();
}

} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
/**从数据库中读取txt文件--------------end------------------------**/
setAttribute("str", str);//把文本内容存放到容器中,
//利用el表达式在页面上显示文本内容
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值