这是因为没有安装运行库,解决办法如下:
1.首先,打开浏览器,在百度上搜索“ 微软运行库bai合集”,按Enter确认,单击以打开一个安全网站。
2.然后,在d出窗口中,单击以选择“本地下载”。
3.下载完成后,打开目录,右键单击并选择解压缩安装包。
4.然后,鼠标双击打开安装程序,在d出窗口中,单击“下一步”,并等待安装完成。
5.最后,安装完成后,可以正常打开CASS9.1应用程序。
import javax.swing.*import java.awt.*
public class test extends JFrame{
public test(){
JButton button//按钮
JLabel label//标签
JComboBox combobox//下拉菜单
JCheckBox checkbox//复选框
JRadioButton radiobutton//单选框
JTextField textfield//文本框
button = new JButton("按钮")
label = new JLabel("标签:")
checkbox = new JCheckBox("复选框一")
radiobutton = new JRadioButton("单选框一")
combobox = new JComboBox()
textfield = new JTextField(100)
Container c = this.getContentPane()
c.setLayout(new FlowLayout())
c.add(button)
c.add(label)
c.add(checkbox)
c.add(radiobutton)
combobox.addItem("1")
combobox.addItem("2")
c.add(combobox)
c.add(textfield)
setSize(300, 200)
setVisible(true)
}
public static void main(String[] args) {
// TODO 自动生成方法存根
test mytest = new test()
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)