hi again, i have found this code online and when i use it says next to process: "cannot find symbol"
do i need to import anything to make it work?
try { BufferedReader in = new BufferedReader(new FileReader("array")); String str; while ((str = in.readLine()) != null) { process(str); } in.close(); } catch (IOException e) { }
thanks in advance =]