Here you can find the source of readLines(String file, ArrayList
public static void readLines(String file, ArrayList<String> lines)
//package com.java2s; //License from project: Apache License import java.util.*; import java.io.*; public class Main { public static void readLines(String file, ArrayList<String> lines) { BufferedReader reader = null; try {//from w w w . j av a 2 s.co m reader = new BufferedReader(new FileReader(new File(file))); String line = null; while ((line = reader.readLine()) != null) { lines.add(line); } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (reader != null) { try { reader.close(); } catch (IOException e) { e.printStackTrace(); } } } } public static void readLines(String file, HashSet<String> lines) { BufferedReader reader = null; try { reader = new BufferedReader(new FileReader(new File(file))); String line = null; while ((line = reader.readLine()) != null) { lines.add(line.trim()); } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (reader != null) { try { reader.close(); } catch (IOException e) { e.printStackTrace(); } } } } }