public class ReadFile {
	
	/**
	 * 按行读取文件操作
	 * @throws IOException 
	 */
	public void readFile(String fileName) throws IOException{
		//(1)File 类
		File file = new File(fileName);
		//
		BufferedReader reader = null;
		try {
			//(2) 将文件放入到BufferedReader中
			reader  = new BufferedReader(new FileReader(file));
			String temp = null;
			int line = 0;
			while( (temp = reader.readLine()) != null){
				System.out.println(temp + (++line));
			}
		} catch (FileNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally{
			reader.close();
		}
			
	}
	
	/**
	 * 文件的写入操作
	 */
	public void writeFile(String fileName, String str) throws IOException{
		
		
		File file = new File(fileName);
		//true实现对文件的追加操作
		FileWriter ws = new FileWriter(file,true);
		
		ws.write(str);
		
		ws.close();
		
	}
	
	/**
	 * 对于一个大文本文件,我们仅仅读取最后的N行
	 * @throws IOException 
	 */
	public String[] getLastNFromFile(String fileName) throws IOException{
		
		String []temp = new String[5];
		File f = new File(fileName);
		BufferedReader reader = new BufferedReader(new FileReader(f));
		String temp1 = null;
		int line = 0;
		while((temp1 = reader.readLine()) != null){
			temp[line++]= temp1;
			if(line >= 5 ){
				line = 0;
			}
		}
		
		return temp;
		
		
	}
	
	/**
	 * 通过索引进行操作
	 * @throws IOException 
	 */
	public String[] getLastNFromFileByIndex(String fileName) throws IOException{
		
		String []temp = new String[5];
		File f = new File(fileName);
		BufferedReader reader = new BufferedReader(new FileReader(f));
		String temp1 = null;
		int line = 0;
		while((temp1 = reader.readLine()) != null){
			line++;
		}
		
		return temp;
		
		
	}
	
	
	

}

  对2000000行的文件进行操作,读取最后的5行,并没有发现直接通过行索引和通过一个数组进行栈式进入有什么差别!

相关文章:

  • 2021-05-29
  • 2021-05-17
  • 2022-02-14
  • 2021-06-07
  • 2021-06-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-24
  • 2022-12-23
  • 2021-09-26
  • 2021-12-14
  • 2022-12-23
  • 2022-12-23
  • 2021-12-11
相关资源
相似解决方案