Actually total lines of this first file is just 97.
suppose shouldn't be any problem isn't...
suppose shouldn't be any problem isn't...
while (readable) { lineFRST = in1.readLine(); if (lineFRST != null) { lines.add(lineFRST); readable = true; } else readable = false; } return (String[]) lines.toArray();
while (readable) { lineFRST = in1.readLine(); if (lineFRST != null) { lines.add(lineFRST); readable = true; } else readable = false; } return (String[]) lines.toArray();
return lines.toArray(new String[lines.size()]); // return (String[]) lines.toArray();
return lines.toArray(new String[lines.size()]); // return (String[]) lines.toArray();
List<String> lines = new ArrayList<String>();
List<String> lines = new ArrayList<String>();
Comment