import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.UnsupportedEncodingException; public class test { public static void main(String[] args){ try { File fileDir = new File("c:\\temp\\test.txt"); BufferedReader in = new BufferedReader( new InputStreamReader( new FileInputStream(fileDir), "UTF8")); String str; while ((str = in.readLine()) != null) { System.out.println(str); } in.close(); } catch (UnsupportedEncodingException e) { System.out.println(e.getMessage()); } catch (IOException e) { System.out.println(e.getMessage()); } catch (Exception e) { System.out.println(e.getMessage()); } } }


2469095052 LV8
2021年2月2日
qw991558639 LV1
2020年6月14日
wei112233 LV15
2020年4月20日
bjgaocl LV13
2020年3月21日
rookie02 LV7
2018年12月10日
lw19900921 LV25
2018年9月20日
xp9522 LV9
2018年8月13日
wkc LV21
2018年5月12日
248196826 LV13
2017年11月11日
coding喵 LV16
2017年11月9日