gpt4 book ai didi

java - 从已登录的 Windows 中获取用户名?对于我的 Swing 申请

转载 作者:塔克拉玛干 更新时间:2023-11-01 23:02:29 24 4
gpt4 key购买 nike

<分区>

我需要从 Windows 获取用户名,我需要为我的 swing 应用程序分配该用户名,我该怎么做。这是我的代码

import javax.swing.*;    
import java.awt.event.*;
public class PasswordFieldExample {
public static void main(String[] args) {
JFrame f=new JFrame("User-ID");
final JLabel label = new JLabel();
label.setBounds(20,150, 200,50);

JLabel l1=new JLabel("Username:");
l1.setBounds(20,20, 80,30);
JButton b = new JButton("Login");
b.setBounds(100,120, 80,30);
final JTextField text = new JTextField();
text.setBounds(100,20, 100,30);
f.add(l1); f.add(label); f.add(b); f.add(text);
f.setSize(300,300);
f.setLayout(null);
f.setVisible(true);
b.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String data = "Username " + text.getText();
label.setText(data);
}
});
}
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com