package test;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;

public class ReadFile {
	public static void main(String[] args) throws Exception {
		try {
			BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(new File("f:\\test.txt")), "UTF-8"));
			String str;
			while ((str = br.readLine()) != null) {
				System.out.println(str);
			}
			br.close();
		}catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException er) {
			er.printStackTrace();
		}
		
	}
}
最近下载更多
lyd19931203  LV21 2020年6月30日
zhushizhan  LV3 2019年12月16日
zhoujunyu  LV14 2019年8月30日
2900490199  LV1 2018年9月25日
lwpwork  LV16 2018年9月4日
xxljxgz  LV21 2018年6月9日
qiudaoing  LV2 2018年5月22日
归心小贩  LV13 2017年9月12日
wzg356  LV18 2015年1月3日
梦蝶  LV18 2014年3月27日
最近浏览更多
mmmmmmppp  LV10 2022年8月22日
a3870764722a  LV22 2022年6月7日
xiex909  LV27 2022年3月30日
梦里  LV3 2021年12月17日
cc900118  LV17 2021年8月26日
yuzhiyuan1977  LV2 2021年8月2日
A_xiaobao  LV9 2021年7月12日
yiersansiwuliu  LV4 2021年7月5日
cxycxy  LV9 2021年6月4日
1524757  LV2 2021年3月19日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友