-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
5.0
-
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);
}
}
- relates to
-
JDK-4859006 XDnD: Can not drag and drop from Staroffice to Java Application
-
- Closed
-