Package dcc.m.textFile

Examples of dcc.m.textFile.READER


        StData.gui.main(new String[0]);

    }

    public static void CHECK(File f) {
        READER read = null;
        try {
            read = new READER(f);
        } catch (FileNotFoundException ex) {
            Logger.getLogger(algoD.class.getName()).log(Level.SEVERE, null, ex);
        }
        while (true) {
            try {
                System.out.println(read.nextLine());
            } catch (IOException ex) {
                Logger.getLogger(algoD.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
    }
View Full Code Here

TOP

Related Classes of dcc.m.textFile.READER

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.