所以我试图为我的朋友制作这个程序,它为Minecraft提供了一个随机的alt(电子邮件和密码)。我已经找到了一种随机发送电子邮件和密码的方法,但我需要一个gui来打开显示密码和电子邮件。有没有办法编写按钮来执行此操作?
我对随机alt的当前代码是
public class NameGenerator {
public static void main(String[] args) {
String[] names = {"email", "email"};
int index = (int) (Math.random() * names.length);
String name = names[index];
System.out.println("Your random alt is " + name + " Have Fun and also DM me on Discord if this alt does not work @________#0000!");
}
}
答案 0 :(得分:0)
你知道如何在java中创建GUI吗?没有?有关如何的简单易学的教程。找一个。创建一个按钮。双击按钮,它将转到生成的按钮ActionListener
或类似的东西。写在你想要它做的内容。
答案 1 :(得分:0)
可以在这里使用Java SWING。看看你是否正在寻找类似下面的代码
public static void main(String[] args) {
JFrame f=new JFrame();
JButton b=new JButton("Get Password");
b.setBounds(50,120,120,30);
b.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
String[] names = {"email", "email"};
int index = (int) (Math.random() * names.length);
String name = names[index];
String msg = "Your random alt is " + name + " Have Fun and also DM me on Discord if this alt does not work @________#0000!";
JOptionPane.showMessageDialog(f, msg);
}
});
f.add(b);
f.setSize(400,400);
f.setLayout(null);
f.setVisible(true);
}