所以我正在研究一个项目,我试图从程序中禁用框架和字段,这样只有窗口才是前面这个是活动的 这是我的代码:
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
public class password
{
private static String password = "pass";
public static void main(String[]args) {
JFrame frame = new JFrame("Password");
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400,100);
JLabel label = new JLabel("Enter password");
JPanel panel = new JPanel();
frame.add(panel);
JPasswordField pass = new JPasswordField(10);
pass.setEchoChar('*');
pass.addActionListener(new AL());
panel.add(label, BorderLayout.WEST);
panel.add(pass, BorderLayout.WEST);
}
static class AL implements ActionListener
{
public void actionPerformed(ActionEvent e) {
JPasswordField input = (JPasswordField) e.getSource();
char [] passy = input.getPassword();
String p = new String(passy);
if (p.equals(password)){
JOptionPane.showMessageDialog(null, "Correct");
System.out.print("Welcome to Adam's Quirky program.");
}
else
JOptionPane.showMessageDialog(null, "Incorrect");
}
}
}
我目前用来编程的程序是Eclipse。
答案 0 :(得分:4)
我会看一下模态对话框。
使用JOptionPane
或自己动手。
如果这些不符合您的需求,请尝试查看JLayer(Java 7)或JXLayer(Java 6及以下版本)
看看LockableUI(这有点过时了,但基本想法是一样的)
如果这不具吸引力,您可以使用“阻挡玻璃窗格”
看看
作为一些例子