Package ucar.unidata.io

Examples of ucar.unidata.io.RandomAccessFile.readLine()


    long start = System.currentTimeMillis();
    System.out.printf("regexp %s%n",filename);
    RandomAccessFile raf = new RandomAccessFile(filename, "r");
    String line;
    while (true) {
      line = raf.readLine();
      if (line == null) break;
      if (line.startsWith("#")) continue;
      if (line.trim().length() == 0) continue;
      balony += parseLine(line);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.