-
Bug
-
Resolution: Fixed
-
P4
-
1.4.0
-
mantis
-
x86
-
windows_2000
-
Verified
Name: gm110360 Date: 04/15/2002
FULL PRODUCT VERSION :
java version "1.4.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)
FULL OPERATING SYSTEM VERSION :
Windows 95, 98, NT, 2000, XP
EXTRA RELEVANT SYSTEM CONFIGURATION :
Internet Explorer 4.0 and later
All version of netscape
Also occures with previous version of the JRE and plug-in
A DESCRIPTION OF THE PROBLEM :
If copying text from a JTextComponent inside an applet, the
applet will always paste the last copied text after
reloading the applet even if the system clipboard contains
other string data.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Make sure the applet has access to the system clipboard,
either by signing it or modifying your local java.policy
file with permission
java.awt.AWTPermission "accessClipboard";
2. Start the applet
3. Copy some text from outside the applet (notepad)
4. Paste it into the JTextPane
5. Copy some text inside the applet
6. Leave the applet
7. Copy some other text from an external application
8. Start the applet again in the same internet explorer
window
9. Paste the text from the clipboard.
EXPECTED VERSUS ACTUAL BEHAVIOR :
Expected result is the contents of the system clipboard.
Actual result is the last copied text from the applet.
Futhermore, no pasting from another datasource is possible.
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
public class test_applet extends javax.swing.JApplet {
private javax.swing.JTextPane pane;
public void init() {
pane = new javax.swing.JTextPane();
getContentPane().add(pane);
}
}
HTML file
<HTML>
<BODY>
<applet code = test_applet width=250 height=250>
</applet>
</BODY>
</HTML>
---------- END SOURCE ----------
(Review ID: 145234)
======================================================================
- duplicates
-
JDK-4648521 Copy/Paste stops working after opening modal dialog
-
- Closed
-
- relates to
-
JDK-4692059 Reg-test LostOwnershipChainTest/SystemClipboard2ProcTest.html failing
-
- Closed
-