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

jdb doesn't handle stdin requirements of command-line programs well

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.2
    • core-svc
    • generic
    • generic



      Name: mc57594 Date: 07/01/99


      Consider the following class:

      ------
      /**
       * Test.java
       *
       *
       * Created: Mon Jun 21 17:43:53 1999
       *
       * @author Amit Kumar
       * @version
       */

      public class Test {
          
          public Test() {
              
          }
          
          public static void main(String[] args) {

              Test test = new Test();
              test.start();

          }

          public static void start() {
              int i = 0;
              for (;;) {
                  i++;
                  System.out.println(i);
                  try {
                      if ((i % 10) == 0) { System.in.read(); }
                  } catch (java.io.IOException ex) {
                      System.exit(1);
                  }
              }
          }
          
      } // Test

      -----

      here is the session:

      -----
      asj(21): jdb Test
      Initializing jdb...
      0xb0:class(Test)
      > run
      run Test
      running ...
      main[1] 1
      2
      3
      4
      5
      6
      7
      8
      9
      10

      ----
      here, the output stops, the program is waiting for user input.
      however, on pressing enter, here is the output:

      ----

      main[1]


      -----

      here is the output of java -version etc:

      -----

      asj(24): java -version
      java version "1.2.2"
      Classic VM (build JDK-1.2.2-V, green threads, sunwjit)
      asj(25): java -fullversion
      java full version "JDK-1.2.2-V"
      (Review ID: 84697)
      ======================================================================

            ghirschsunw Gordon Hirsch (Inactive)
            mchamnessunw Mark Chamness (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: