欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > 文章正文

java 文件读取,

来源: javaer 分享于  点击 4262 次 点评:48

java 文件读取,


public static void main(String []args){
		File file = new File("F:/eacode.sql");
		BufferedReader reader = null;
		try {
			System.out.println("以行为单位读取文件内容,一次读一整行:");
			reader = new BufferedReader(new FileReader(file));
			String tempString = null;
			int line = 1;
			//一次读入一行,直到读入null为文件结束
			while ((tempString = reader.readLine()) != null){
				tempString=tempString.replace("'", "");
				String [] str=tempString.split(",");
			    //显示行号
			     System.out.println("line " + line + ": " + tempString);
			     line++;

			}
		   reader.close();
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			if (reader != null){
				try {
					reader.close();
				} catch (IOException e1) {
				}
			}
		}
	  } 

相关文章

    暂无相关文章
相关栏目:

用户点评