Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4015161

java.io.*Input* is too slow

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.1
    • core-libs
    • sparc
    • solaris_2.5.1

      Included are two similar programs in C and Java (/usr/green3/local.java/NIGHTLY1/jdk1.1/solaris/JDK1.1M-5).

      The java version takes 443 times longer to run (far more than most comparisons)

      The output of the two are:

      ccode
      ccount = 19990 took 210 milliseconds

      java jcode
      java count = 19990 took 93225 milliseconds


      ---------------------- The C code ---------------------------
      #include <stdio.h>
      main(int argc, char *argv[])
      {
      char buff[2000];
      FILE *fd;
      int count = 0;

      clock();
      fd = fopen("/usr/dist/share/lib/nameslistx", "r");
      while(fgets(buff, 2000, fd) != NULL)
      {
      count++;
      }
      printf("ccount = %d took %d milliseconds\n", count, clock()/1000);
      }


      --------------------- The Java Code -----------------------------------
      import java.io.DataInputStream;
      import java.io.FileInputStream;
      import java.util.Date;

      class jcode
      {
      public static void main(String arg[])
      {
      long start = new Date().getTime();
      try {
      DataInputStream fs = new DataInputStream(new FileInputStream("/usr/dist/share/lib/nameslistx"));
      int count = 0;

      while(fs.available() > 0)
      {
      String line = fs.readLine();
      count++;
      //System.out.println("Line "+count+": "+line);
      }
      System.out.println("java count = "+count+" took "+(new Date().getTime() - start)+" milliseconds");
      } catch (Exception e) {
      e.printStackTrace();
      }
      }
      }

            iris Iris Clark
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: