Java制作一个资产管理系统窗体
时间: 2023-07-16 20:17:09 浏览: 104
以下是一个简单的Java资产管理系统窗体实现:
```java
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class AssetManagementSystem extends JFrame implements ActionListener {
private JLabel titleLabel;
private JLabel nameLabel;
private JTextField nameTextField;
private JLabel typeLabel;
private JComboBox<String> typeComboBox;
private JLabel valueLabel;
private JTextField valueTextField;
private JButton addButton;
private JButton clearButton;
private JTextArea assetListTextArea;
public AssetManagementSystem() {
super("资产管理系统");
// 设置窗口大小和位置
setSize(500, 500);
setLocationRelativeTo(null);
// 设置窗口关闭操作
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// 创建标题标签
titleLabel = new JLabel("资产管理系统");
titleLabel.setFont(new Font("宋体", Font.BOLD, 24));
titleLabel.setHorizontalAlignment(JLabel.CENTER);
// 创建资产名称标签和文本框
nameLabel = new JLabel("资产名称:");
nameTextField = new JTextField(20);
// 创建资产类型标签和下拉框
typeLabel = new JLabel("资产类型:");
typeComboBox = new JComboBox<String>(new String[]{"固定资产", "流动资产"});
// 创建资产价值标签和文本框
valueLabel = new JLabel("资产价值:");
valueTextField = new JTextField(20);
// 创建添加和清空按钮
addButton = new JButton("添加");
clearButton = new JButton("清空");
// 注册按钮事件监听器
addButton.addActionListener(this);
clearButton.addActionListener(this);
// 创建资产列表文本区域
assetListTextArea = new JTextArea();
// 创建面板并添加组件
JPanel panel = new JPanel(new GridLayout(6, 2));
panel.add(titleLabel);
panel.add(new JLabel());
panel.add(nameLabel);
panel.add(nameTextField);
panel.add(typeLabel);
panel.add(typeComboBox);
panel.add(valueLabel);
panel.add(valueTextField);
panel.add(addButton);
panel.add(clearButton);
panel.add(new JLabel("资产列表:"));
panel.add(assetListTextArea);
// 将面板添加到窗口
add(panel);
// 显示窗口
setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
if (e.getSource() == addButton) {
// 获取资产信息
String name = nameTextField.getText();
String type = (String) typeComboBox.getSelectedItem();
String value = valueTextField.getText();
// 添加资产到列表
assetListTextArea.append(name + "," + type + "," + value + "\n");
// 清空输入框
nameTextField.setText("");
valueTextField.setText("");
} else if (e.getSource() == clearButton) {
// 清空输入框和资产列表
nameTextField.setText("");
valueTextField.setText("");
assetListTextArea.setText("");
}
}
public static void main(String[] args) {
new AssetManagementSystem();
}
}
```
代码中创建了一个继承自JFrame的资产管理系统窗体类,并实现了ActionListener接口来处理按钮事件。窗体包含了资产名称、资产类型、资产价值等组件,还有一个资产列表文本区域。当用户点击添加按钮时,程序会将输入的资产信息添加到资产列表中,并清空输入框;当用户点击清空按钮时,程序会清空输入框和资产列表。
阅读全文