关于java中的图像图标以及如何限制可以从我的swing应用程序的下拉菜单中选择的图像图标有一个小问题。
我正在开发一个多平台java程序,并且无法根据使用的操作系统来限制您可以从下拉菜单中选择的图标。
例如。如果我在基于 Windows 的 PC 上选择一个 linux 图标,用户应该会收到一条小消息,说这不是 linux,而是再次选择 Windows。
到目前为止,我的代码的工作原理是它将加载图标没有错误等
private String img[] = {
"default.png",
"window.png",
"linix.png",
"macos.png",
"solaris.png"};
private ImgIcon[] icon = {
new ImageIcon(getClass().getResource(img[0])),
new ImageIcon(getClass().getResource(img[1])),
new ImageIcon(getClass().getResource(img[2])),
new ImageIcon(getClass().getResource(img[3])),
new ImageIcon(getClass().getResource(img[4]))};
private void jComboBox1ActionPerformed(java.awt.event.ActionEvent evt)
{
if (IsWin()) {
jTextArea1.setText("Detected OS : " + os);
}
else if (IsMac()) {
jTextArea1.setText("Detected OS : " + os);
}
else if (IsLin()) {
jTextArea1.setText("Detected OS : " + os);
}
else if(IsSol()) {
jTextArea1.setText("\Detected OS : " + os);
}
}
到目前为止,它工作得很好,当您选择它显示的图标时,您会在 JTextArea 中收到一条小消息,告诉您您的操作系统是什么......只需要以某种方式提醒用户他们选择了错误的操作系统图标,如果他们是在另一个操作系统上!
任何建议,将不胜感激!