Roshana Pitigala
Roshana Pitigala

Reputation: 8806

Replacing the password character to dot in JPasswordField

The default password symbol of a JPasswordField is a dot.

enter image description here

But this will be replaced by Java Look and Feel to an asterisk.

enter image description here

Is there a way that I can replace this symbol to the dot back again after loading the Look and Feel ?

I already know that initializing or creating the JFrame object before loading the Look and Feel code does this, so please suggest some thing else like setEchoChar(char c).

Upvotes: 4

Views: 5575

Answers (2)

user7619949
user7619949

Reputation:

Here's a list of black dots as Unicode.

  • ● - Black Circle
  • ⏺ - Black Circle for Record
  • ⚫ - Medium Black Circle
  • ⬤ - Black Large Circle
  • ⧭ - Black Circle with Down Arrow
  • 🞄 - Black Slightly Small Circle
  • • - Bullet
  • ∙ - Bullet Operator
  • ⋅ - Dot Operator
  • 🌑 - New Moon Symbol

See also,

Upvotes: 3

aterai
aterai

Reputation: 9818

enter image description here

import java.awt.*;
import javax.swing.*;
import javax.swing.plaf.basic.*;
import javax.swing.text.*;

public class PasswordCharacterTest {
  public JComponent makeUI() {
    //@see com/sun/java/swing/plaf/windows/WindowsLookAndFeel.java
    //"PasswordField.echoChar", new XPValue(new Character((char)0x25CF), new Character('*')),
    JPasswordField pf1 = new JPasswordField(24);
    pf1.setEchoChar('\u25CF');
    JPasswordField pf2 = new JPasswordField(24) {
      @Override public void updateUI() {
        super.updateUI();
        setUI(MyPasswordFieldUI.createUI(this));
      }
    };
    JPanel p = new JPanel();
    p.add(pf1);
    p.add(pf2);
    p.setBorder(BorderFactory.createEmptyBorder(20, 5, 10, 5));
    return p;
  }
  public static void main(String... args) {
    EventQueue.invokeLater(() -> {
      JFrame f = new JFrame();
      f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
      f.getContentPane().add(new PasswordCharacterTest().makeUI());
      f.setSize(320, 240);
      f.setResizable(false);
      f.setLocationRelativeTo(null);
      f.setVisible(true);
    });
  }
}

class MyPasswordFieldUI extends BasicPasswordFieldUI {
  public static MyPasswordFieldUI createUI(JPasswordField c) {
    //TEST: c.setEchoChar('W');
    c.setEchoChar('O');
    return new MyPasswordFieldUI();
  }
  @Override public View create(Element elem) {
    return new MyPasswordView(elem);
  }
  private static class MyPasswordView extends PasswordView {
    @Override protected int drawEchoCharacter(Graphics g, int x, int y, char c) {
      Graphics2D g2 = (Graphics2D) g.create();
      g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                          RenderingHints.VALUE_ANTIALIAS_ON);
      FontMetrics fm = g2.getFontMetrics();
      int r = fm.charWidth(c) - 2;
      g2.setPaint(Color.RED);
      g2.fillOval(x + 1, y + 3 - fm.getAscent(), r, r);
      g2.dispose();
      return x + fm.charWidth(c);
    }
    protected MyPasswordView(Element element) {
      super(element);
    }
  }
}

Upvotes: 4

Related Questions