java程序设计基础篇初学者必看小结 JTextField jtfName = new JTextField("Type Name Here"); jtfName.setBackground(Color.red); // Create a check box with text bold JCheckBox jchkBold = new JCheckBox("Bold"); jchkBold.setSize(10,50); // Create a radio button with text
public class ChatClient extends JFrame implements ActionListener{ String ip = "127.0.0.1";//连接到服务端的ip地址 int port = 8888;//连接到服务端的端口号 String userName = "匆匆过客";//用户名 int type = 0;//0表示未连接,1表示已连接 Image icon;//程序图标 JComboBox combobox;//选择发送消息的接受者 JTextA