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

NPE in the trace while refreshing an Applet writing into a TextArea.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • None
    • 6u1
    • deploy
    • None
    • x86
    • windows_xp

      Null Pointer Exception while reloading an Applet multiple times on WinXP SP2.
      IE6.0
      Buid used : 6u1b05 and 5u12
      Exception.

      Exception in thread "Thread-162" java.lang.NullPointerException: null pData
      at sun.awt.windows.WTextAreaPeer.insertText(Native Method)
      at java.awt.TextArea.insertText(Unknown Source)
      at java.awt.TextArea.appendText(Unknown Source)
      at java.awt.TextArea.append(Unknown Source)

      How to reproduce:

      Launch page - http://sqindia.india.sun.com/~rn195728/BugVerification/6480378/Top.html
      Click on Launch Button.
      Observe the console.

      Applet Code:
      import java.applet.Applet;
      import java.awt.TextArea;

      public class CrashTextAreaApplet extends Applet
      {

      TextArea ta;

          public CrashTextAreaApplet()
          {
              ta = new TextArea(20, 70);
          }

          public void init()
          {
              add(ta);
          }

          public void start()
          {
              Thread textWriter = new Thread() {

                  public void run()
                  {
                      do
                          ta.append("Attempting crash Attempting crash Attempting crash Attempting crash Attempting crash \n");
                      while(true);
                  }
              };
              textWriter.start();
          }

          public void destroy()
          {
              ta.setText("");
          }

      }

            hdongorcl Hao Dong (Inactive)
            rnairsunw Raghu Nair
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: