我正在设计一个程序,它使用输入文件来存储颜色及其十六进制值(例如,黑色000000)。目前我有两个arraylists,一个用于颜色,一个用于十六进制值(我知道我应该使用一个地图,但我很难将输入传输到地图中)。无论如何使用我的colorCollection数组的大小使用for循环?我附上了一些代码,看看这是否有助于我想要完成的任务。
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import javax.swing.*;
public class ReadStoreShow extends JFrame{
private static int number;
private static ArrayList<String> colorCollection = new ArrayList<String>();
private static ArrayList<String> hexCollection = new ArrayList<String>();
private JRadioButton[] jrbColor = new JRadioButton[20];
public ReadStoreShow() {
JPanel p1 = new JPanel();
p1.setLayout(new GridLayout(4,5));
for (int i = 0; i < colorCollection.size(); i++) {
jrbColor[i] = new JRadioButton(colorCollection.get(i));
// Is it possible to create buttons based on the size of colorCollection?
jrbColor[i].setText(colorCollection.get(i));
ButtonGroup group = new ButtonGroup();
group.add(jrbColor[i]);
p1.add(jrbColor[]);
}
add(p1, BorderLayout.CENTER);
setContentPane(p1);
for (int j = 0; j < colorCollection.size(); j++){
jrbColor[j].addActionListener(new ActionListener() {
@Override
public void actionPerformed(final ActionEvent e) {
for (int k = 0; k < colorCollection.size(); k++){
final String hexColor = hexCollection.get(k);
getContentPane().setBackground(Color.decode(hexColor));
repaint();
}
}
});
}
}
public static void main(final String[] args) throws IOException {
final ReadStoreShow frame = new ReadStoreShow();
frame.pack();
frame.setLayout(new GridLayout(20, 1));
frame.setSize(400, 300);
frame.setTitle("Color Change");
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
try {
final java.io.File colors = new java.io.File("input.txt");
final Scanner input = new Scanner(colors);
while (input.hasNext()) {
colorCollection.add(input.next());
hexCollection.add(input.next());
} // I'm assuming I should have used one Map instead of two arrays...
input.close();
}
catch (final FileNotFoundException a) {
JOptionPane.showMessageDialog(null, "File not found.");
System.exit(0);
}
while (number < 10 || number > 20) {
number = Integer.parseInt(JOptionPane.showInputDialog(null,
"How many colors do you want? Must be between 10 and 20."));
} // while
System.out.println("The colors entered were:");
for (final Iterator<String> itr = colorCollection.iterator(); itr.hasNext();)
System.out.println(itr.next());
System.out.println("The hexidecimal codes entered were:");
for (final Iterator<String> itr = hexCollection.iterator(); itr.hasNext();)
System.out.println(itr.next());
}
}
这是我当前的input.txt:
Black 0x000000
Red 0xFF0000
Green 0x00FF00
Blue 0x0000FF
Yellow 0xFFFF00
White 0xFFFFFF
Gray 0x707070
Purple 0x990099
Orange 0xFF6600
LightBlue 0x6666FF
答案 0 :(得分:3)
是的,您可以这样做,但您的代码中存在很多问题。我在下面只介绍几个,这里的评论中有更多信息。
你有:
for (int i = 0; i < colorCollection.size(); i++) {
jrbColor[i] = new JRadioButton(colorCollection.get(i));
...
ButtonGroup group = new ButtonGroup();
group.add(jrbColor[i]);
}
在这里,您要为每个单选按钮创建一个新的ButtonGroup
。这可能不是你想要的。 ButtonGroup
是一组单选按钮,其中选择是互斥的,因此您的ButtonGroup
应包含给定概念选项的所有选项。在你的情况下,它听起来像是:
ButtonGroup group = new ButtonGroup();
for (int i = 0; i < colorCollection.size(); i++) {
jrbColor[i] = new JRadioButton(colorCollection.get(i));
...
group.add(jrbColor[i]);
}
另一个问题是您使用的是固定大小的JRadioButton[]
数组。考虑使用动态内容,例如ArrayList<JRadioButton>
。这样你就可以随意添加任意数量的新按钮。
第三件事就是,你不想setContentPane(p1)
; Swing将为您提供内容窗格。您需要做的就是设置适当的布局并将组件添加到框架中。
有大量官方摇摆教程here。我建议浏览并阅读相关内容;特别是,radio buttons,button groups和laying out components上的内容对您非常有帮助。
而不是直接解决代码段中的所有问题;你可能想要阅读这些教程,给它另一个镜头,然后如果你还有问题则回来。如果你从一个小的测试程序开始玩它也可能会有帮助,只需在面板上创建几个单选按钮;通过这种方式,你可以感受到它,而不会受到你的实际程序应该做的其他事情的束缚。