/* * Constructor (class entry point from java) * */ CDToolParser(String infilename, String outfile){ try{ //@ToDo make outfile stream, this prints to System.out instead out=System.out; unparsed_lines = new ArrayList<String>(); //spectral_entries = new ArrayList<SpectralEntry>(); spectral_table = new ArrayList<String>(); //File f = new File(infilename); FileInputStream fis= new FileInputStream(infilename); InputStreamReader isr = new InputStreamReader((InputStream)fis); BufferedReader br = new BufferedReader((Reader)isr); String line=""; while((line=br.readLine())!=null){ String p=ParseLine(line); } WriteExported(); }catch(FileNotFoundException fnfe){ fnfe.printStackTrace(); }catch(IOException ioe){ ioe.printStackTrace(); } }
FastScanner(File f) { try { br = new BufferedReader(new FileReader(f)); } catch (FileNotFoundException e) { e.printStackTrace(); } }