-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.3.0
-
x86
-
windows_98
Name: skT45625 Date: 08/22/2000
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
While typing in a Korean password into a JPasswordField the last-typed character
is shown instead of the echo character.
Example source code:
import javax.swing.*;
import java.awt.*;
public class TestPass extends Object
{
public static void main(String [] args)
{
JFrame frame = new JFrame("Echo Char Tester");
JLabel passLbl = new JLabel("Enter Password: ");
JPasswordField passFld = new JPasswordField();
frame.getContentPane().add(passLbl, BorderLayout.NORTH);
frame.getContentPane().add(passFld, BorderLayout.SOUTH);
frame.setSize(200, 80);
frame.show();
}
}
Compile the program and run it on a Korean Windows System.
Type Korean characters into the JPasswordField when the dialog pops up.
(Review ID: 108776)
======================================================================
- duplicates
-
JDK-4397852 korean characters are displayed when user enters the character on passward field
- Closed