论坛首页 Java企业应用论坛

读txt文件的代码

浏览 2948 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (9)
作者 正文
   发表时间:2008-12-02   最后修改:2010-04-23

class test
{
	public static void main(String []args)throws Exception
	{
		StringBuffer sb = new StringBuffer();
		BufferedReader br =new BufferedReader(new InputStreamReader(new FileInputStream("log.txt")));
		while((String s=br.readLine()) != null)
		{
			sb.append(s);
		}
		
		System.out.println(sb.toString());
	}
};


BufferedReader br =new BufferedReader(new FileReader
				(new File("E:\\a.txt")));  
   发表时间:2008-12-02  
谢谢你哦,哈哈
0 请登录后投票
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics