JLabel usernameLabel = new JLabel("用户名:");怎么让‘’用户名‘’字体变大
时间: 2024-03-10 09:49:38 浏览: 129
要改变JLabel中文本的字体大小,可以使用setFont()方法来实现。例如,将JLabel中文本的字体大小改为16号字体,可以按照以下方式修改代码:
```
JLabel usernameLabel = new JLabel("用户名:");
usernameLabel.setFont(new Font("宋体", Font.PLAIN, 16));
```
其中,setFont()方法接受一个Font对象作为参数,Font对象用于描述字体的属性,如字体名称、字体风格和字体大小。在上面的代码中,使用了16号的普通宋体字体。如果需要使用其他字体,可以在第一个参数中指定字体名称,如"微软雅黑"、"黑体"等。如果需要改变字体风格,可以在第二个参数中指定字体风格,如Font.BOLD表示加粗字体,Font.ITALIC表示斜体字体等。
相关问题
1.实现一个窗体,要求:(1)标题显示: GUI 实验;(2)窗体尺寸为:长400像素,宽300像素,窗体左上角坐标位置为(150,100),分别使用 Dimension 类和 Point 类实现; (3)窗体内通过标签控件显示国旗图标和文字内容:中华人民共和国 字体为:幼圆字体,20号,红色,加粗,倾斜。1.仿照 window 计算器,实现计算器界面。 2.使用绝对定位,实现注册和登录界面。
实现一个窗体:
```java
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Point;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class MyFrame extends JFrame {
public MyFrame() {
this.setTitle("GUI 实验");
this.setSize(new Dimension(400, 300));
this.setLocation(new Point(150, 100));
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JLabel label = new JLabel("中华人民共和国", new ImageIcon("china.png"), JLabel.CENTER);
label.setFont(new Font("幼圆", Font.BOLD + Font.ITALIC, 20));
label.setForeground(Color.RED);
this.add(label);
}
public static void main(String[] args) {
MyFrame frame = new MyFrame();
frame.setVisible(true);
}
}
```
实现一个计算器界面:
```java
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class Calculator extends JFrame implements ActionListener {
private JTextField textField;
private double firstNumber, secondNumber;
private String operator;
public Calculator() {
this.setTitle("计算器");
this.setSize(300, 400);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel = new JPanel();
panel.setLayout(new GridLayout(4, 4, 5, 5));
String[] buttonLabels = { "7", "8", "9", "/", "4", "5", "6", "*", "1", "2", "3", "-", "0", ".", "=", "+" };
JButton[] buttons = new JButton[buttonLabels.length];
for (int i = 0; i < buttons.length; i++) {
buttons[i] = new JButton(buttonLabels[i]);
buttons[i].addActionListener(this);
panel.add(buttons[i]);
}
textField = new JTextField();
textField.setEditable(false);
textField.setBackground(Color.WHITE);
this.add(textField, BorderLayout.NORTH);
this.add(panel, BorderLayout.CENTER);
}
public void actionPerformed(ActionEvent e) {
String command = e.getActionCommand();
if (command.matches("\\d")) {
textField.setText(textField.getText() + command);
} else if (command.matches("[+\\-*/]")) {
firstNumber = Double.parseDouble(textField.getText());
operator = command;
textField.setText("");
} else if (command.equals(".")) {
if (!textField.getText().contains(".")) {
textField.setText(textField.getText() + command);
}
} else if (command.equals("=")) {
secondNumber = Double.parseDouble(textField.getText());
double result = 0;
switch (operator) {
case "+":
result = firstNumber + secondNumber;
break;
case "-":
result = firstNumber - secondNumber;
break;
case "*":
result = firstNumber * secondNumber;
break;
case "/":
result = firstNumber / secondNumber;
break;
}
textField.setText(String.valueOf(result));
} else if (command.equals("C")) {
textField.setText("");
}
}
public static void main(String[] args) {
Calculator calculator = new Calculator();
calculator.setVisible(true);
}
}
```
使用绝对定位,实现注册和登录界面:
```java
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
public class Login extends JFrame implements ActionListener {
private static final int WIDTH = 400;
private static final int HEIGHT = 300;
private JTextField usernameField;
private JPasswordField passwordField;
public Login() {
this.setTitle("登录");
this.setSize(WIDTH, HEIGHT);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
int x = (screenSize.width - WIDTH) / 2;
int y = (screenSize.height - HEIGHT) / 2;
this.setLocation(x, y);
JPanel panel = new JPanel(null);
JLabel titleLabel = new JLabel("欢迎使用我的系统");
titleLabel.setFont(new Font("微软雅黑", Font.BOLD, 20));
titleLabel.setForeground(Color.BLUE);
titleLabel.setBounds(120, 30, 200, 30);
panel.add(titleLabel);
JLabel usernameLabel = new JLabel("用户名:");
usernameLabel.setFont(new Font("微软雅黑", Font.PLAIN, 16));
usernameLabel.setBounds(80, 80, 80, 30);
panel.add(usernameLabel);
usernameField = new JTextField();
usernameField.setBounds(150, 80, 150, 30);
panel.add(usernameField);
JLabel passwordLabel = new JLabel("密 码:");
passwordLabel.setFont(new Font("微软雅黑", Font.PLAIN, 16));
passwordLabel.setBounds(80, 120, 80, 30);
panel.add(passwordLabel);
passwordField = new JPasswordField();
passwordField.setBounds(150, 120, 150, 30);
panel.add(passwordField);
JButton loginButton = new JButton("登录");
loginButton.setBounds(100, 180, 80, 30);
loginButton.addActionListener(this);
panel.add(loginButton);
JButton registerButton = new JButton("注册");
registerButton.setBounds(220, 180, 80, 30);
registerButton.addActionListener(this);
panel.add(registerButton);
this.setContentPane(panel);
}
public void actionPerformed(ActionEvent e) {
String command = e.getActionCommand();
if (command.equals("登录")) {
String username = usernameField.getText();
String password = new String(passwordField.getPassword());
if (username.equals("admin") && password.equals("admin")) {
System.out.println("登录成功!");
} else {
System.out.println("用户名或密码错误!");
}
} else if (command.equals("注册")) {
System.out.println("进入注册页面!");
}
}
public static void main(String[] args) {
Login login = new Login();
login.setVisible(true);
}
}
```
用Java设计编写登录窗口,该应用程序维护一张记录合法用户名和密码的列表;只有合法的用户才能通过登录程序;需要实现:1)最多尝试3次;2)登录成功退出登录窗口;3)用户名或密码为空时,提示信息;4)用户名或密码错误时,清空密码,并将用户名选中; 5)居中显示窗口
好的,这是一个比较基础的Java GUI项目,需要用到Swing组件和基本的Java语法知识。
首先,需要创建一个JFrame窗口,使用setLayout(null)方法取消默认布局,使用setBounds方法设置窗口大小和位置,使用setDefaultCloseOperation方法设置关闭窗口时的操作。
然后,需要在窗口中添加JLabel、JTextField、JPasswordField和JButton等组件,并使用setBounds方法设置它们的位置和大小,使用setForeground和setFont方法设置它们的颜色和字体,使用addActionListener方法为按钮添加事件监听器。
接下来,需要创建一个合法的用户名和密码列表,使用HashMap或者其他数据结构来存储。在事件监听器中,需要获取用户输入的用户名和密码,判断它们是否为空,如果为空则弹出提示框;如果不为空,则判断它们是否匹配列表中的用户名和密码,如果匹配则退出登录窗口,否则清空密码并将用户名选中。
最后,使用setLocationRelativeTo(null)方法将窗口居中显示。
下面是示例代码:
```java
import java.awt.Color;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.HashMap;
import javax.swing.*;
public class LoginWindow extends JFrame {
private JLabel usernameLabel, passwordLabel, messageLabel;
private JTextField usernameField;
private JPasswordField passwordField;
private JButton loginButton;
private HashMap<String, String> validUsers;
public LoginWindow() {
super("Login");
setSize(300, 200);
setLayout(null);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
validUsers = new HashMap<>();
validUsers.put("user1", "pass1");
validUsers.put("user2", "pass2");
validUsers.put("user3", "pass3");
usernameLabel = new JLabel("Username:");
usernameLabel.setBounds(30, 30, 80, 25);
add(usernameLabel);
usernameField = new JTextField();
usernameField.setBounds(110, 30, 160, 25);
add(usernameField);
passwordLabel = new JLabel("Password:");
passwordLabel.setBounds(30, 60, 80, 25);
add(passwordLabel);
passwordField = new JPasswordField();
passwordField.setBounds(110, 60, 160, 25);
add(passwordField);
loginButton = new JButton("Login");
loginButton.setBounds(110, 100, 80, 25);
loginButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String username = usernameField.getText();
String password = new String(passwordField.getPassword());
if (username.isEmpty() || password.isEmpty()) {
messageLabel.setText("Username or password cannot be empty.");
} else if (validUsers.containsKey(username) && validUsers.get(username).equals(password)) {
dispose();
} else {
messageLabel.setText("Invalid username or password.");
passwordField.setText("");
usernameField.requestFocus();
usernameField.selectAll();
}
}
});
add(loginButton);
messageLabel = new JLabel("");
messageLabel.setForeground(Color.RED);
messageLabel.setFont(new Font("Arial", Font.PLAIN, 12));
messageLabel.setBounds(30, 140, 240, 25);
add(messageLabel);
setLocationRelativeTo(null);
setVisible(true);
}
public static void main(String[] args) {
new LoginWindow();
}
}
```
阅读全文