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

garbage displayed when drag text from Mozilla(1.5) into JTextPane

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 5.0
    • client-libs
    • x86
    • linux


      ###@###.### 2004-03-01

      2SE Version (please include all output from java -version flag):
        java version "1.5.0-beta"
        Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta-b32c)
        Java HotSpot(TM) Client VM (build 1.5.0-beta-b32c, mixed mode)

      Does this problem occur on J2SE 1.3, 1.4 or 1.4.1? Yes / No (pick one)
        No

      Operating System Configuration Information (be specific):
        Gentoo Linux, kernel 2.4.22-gentoo-r5, XFree86 4.3.0, GNOME 2.4

      Hardware Configuration Information (be specific):
        Thinkpad T30 laptop, Intel Pentium 4, 512MB memory

      Bug Description:
        Dragging text from the Mozilla (1.5) browser window into an HTML-enabled
        JTextPane causes a bunch of garbage to be inserted into the JTextPane -
        it's the UTF16LE string, but decoded as ASCII, so it looks like:
           <\000f\000o\000n\000t\000 \000s\000
        and so on, where each \000 is shown as a box. A screenshot of the result
        is at http://kano.net/in/drag-bug.

      Steps to Reproduce (be specific):
        - compile and run attached sample test case(DragTester.java)
        - copy text from the Mozilla browser into an HTML-enabled
          JTextPane.
        
      Test Program:

      import javax.swing.JFrame;
      import javax.swing.JScrollPane;
      import javax.swing.JTextPane;

      public class DragTester {
           public static void main(String[] args) {
               JTextPane textPane = new JTextPane();
               textPane.setContentType("text/html");
               textPane.setText("Drag links or text into me from Mozilla");

               JFrame frame = new JFrame();
               frame.getContentPane().add(new JScrollPane(textPane));
               frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
               frame.setSize(400, 500);
               frame.setVisible(true);
           }
      }

            agerasimsunw Alexander Gerasimov (Inactive)
            tyao Ting-Yun Ingrid Yao (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: