我希望在我的应用程序中有这个部分,允许用户添加更多选项(以JradioButton的形式)。因此,默认情况下,我在JradioButton中为用户提供了一些选项,如果他们添加更多选项(在应用程序的其他部分);我的Jframe应该通过Setup_Equipment_Frame方法(如下所示)自动添加选项,其中它获取的字符串数组基本上是用户添加的选项。我遇到了一些困难。
代码:
public void Setup_Equipment_frame(String a[]) //String_Array of Newly added options
{
//creating default options
JRadioButton option1 = new JRadioButton("Visual Stadio");
JRadioButton option2 = new JRadioButton("Netbeans");
JRadioButton option3 = new JRadioButton("Eclipse");
//Creating the button group
ButtonGroup group = new ButtonGroup();
group.add(option1);
group.add(option2);
group.add(option3);
//setting the frame layout
setLayout(new FlowLayout());
for(int i=0; i<=a.length-1;i++) //loop for how many new options are added
{
if(a[i] != null) //if the array's current item is not null
{
JRadioButton NewButton1= new JRadioButton(""+a[i]); //Add the Button
add(NewButton1);
}
}
//adding the default options
add(option1);
add(option2);
add(option3);
pack();
}
现在它确实有效。我添加了单选按钮,但由于添加按钮的名称都是&#34; NewButton1&#34;,我无法控制它们,我只能访问最后创建的JRadioButton和默认值。 我不知道用户可能会添加多少新选项。
我的问题是如何自动创建具有不同名称的JRadioButton。
如果我的问题或代码令人困惑,我会提前道歉。我不是那么有经验。
感谢
感谢您的答案,在您的帮助下,我只需添加一个JradioButtons数组即可解决问题
对于那些可能面临同样问题的人来说,适用于我的代码如下:
解决:
public void Setup_Equipment_frame(String a[])
{
int number_of_options=1;//number of new options
for(int i=0; i<=a.length-1;i++)
{
if(a[i] != null){
number_of_options++;
}
}
JRadioButton []v=new JRadioButton[number_of_options];
setLayout(new FlowLayout());
for(int z=0; z<=number_of_options-1;z++)
{if(a[z] != null){
{
v[z]=new JRadioButton(a[z]);
add(v[z]);
}
}
}
}
非常感谢
答案 0 :(得分:2)
你只需要声明一个JRadioButton数组,你将从用户那里获取数组的大小。然后通过循环将它们添加到panel.I认为这就是你问的,如果不是那么告诉我。
答案 1 :(得分:2)
现在它确实有效。我添加了单选按钮,但由于添加按钮的名称都是&#34; NewButton1&#34;,我无法控制它们,我只能访问最后创建的JRadioButton和默认值。我不知道用户可能会添加多少新选项。
不完全,您可能会将对象与变量混淆。了解JRadioButton 对象没有名称,没有对象可以做,是的,他们已创建,然后分配给名为NewButton1的本地变量,即变量&#39 ; s范围仅限于for循环,因此无论varialbe的名称如何,它都不会存在于for循环之外。
你的问题实质上归结为:我怎样才能获得参考
一堆新创建的对象,有几个不错的解决方案,包括使用JRadioButton的ArrayList,并将每个按钮添加到列表中。或者,如果要将每个JRadioButton与String关联,则使用Map<String, JRadioButton>
。
另外,您需要学习并使用Java naming conventions。变量名都应以较低的字母开头,而类名以大写字母开头。了解并遵循这一点将使我们能够更好地理解您的代码,并使您能够更好地理解其他代码。
以下是使用ArrayList<JRadioButton>
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.util.ArrayList;
import java.util.List;
import javax.swing.*;
@SuppressWarnings("serial")
public class AddRadioButtons extends JPanel {
private static final int PREF_W = 300;
private static final int PREF_H = 400;
// List that holds all added JRadioButtons
private List<JRadioButton> radioButtonList = new ArrayList<>();
// jpanel to hold radiobuttons in a verticle grid
private JPanel buttonPanel = new JPanel(new GridLayout(0, 1));
private JTextField radioBtnNameField = new JTextField(10);
public AddRadioButtons() {
// jpanel to add to jscrollpane
// nesting JPanels so that JRadioButtons don't spread out inside the scrollpane.
JPanel innerViewPanel = new JPanel(new BorderLayout());
innerViewPanel.add(buttonPanel, BorderLayout.PAGE_START);
JScrollPane scrollPane = new JScrollPane(innerViewPanel);
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
// holds textfield and button for adding new radiobuttons
JPanel topPanel = new JPanel();
topPanel.add(radioBtnNameField);
Action addRBtnAction = new AddRadioBtnAction("Add Radio Button");
topPanel.add(new JButton(addRBtnAction));
radioBtnNameField.setAction(addRBtnAction);
// holds button to display selected radiobuttons
JPanel bottomPanel = new JPanel();
bottomPanel.add(new JButton(new PrintAllSelectedBtnAction("Print All Selected Buttons")));
setLayout(new BorderLayout());
add(scrollPane, BorderLayout.CENTER);
add(topPanel, BorderLayout.PAGE_START);
add(bottomPanel, BorderLayout.PAGE_END);
}
@Override
public Dimension getPreferredSize() {
if (isPreferredSizeSet()) {
return super.getPreferredSize();
}
return new Dimension(PREF_W, PREF_H);
}
// I prefer to use AbstractAction in place of ActionListeners since
// they have a little more flexibility and power.
private class AddRadioBtnAction extends AbstractAction {
public AddRadioBtnAction(String name) {
super(name);
int mnemonic = (int) name.charAt(0);
putValue(MNEMONIC_KEY, mnemonic);
}
@Override
public void actionPerformed(ActionEvent evt) {
String text = radioBtnNameField.getText();
JRadioButton rbtn = new JRadioButton(text);
radioButtonList.add(rbtn);
buttonPanel.add(rbtn);
buttonPanel.revalidate();
buttonPanel.repaint();
radioBtnNameField.selectAll();
}
}
private class PrintAllSelectedBtnAction extends AbstractAction {
public PrintAllSelectedBtnAction(String name) {
super(name);
int mnemonic = (int) name.charAt(0);
putValue(MNEMONIC_KEY, mnemonic);
}
@Override
public void actionPerformed(ActionEvent e) {
for (JRadioButton radioBtn : radioButtonList) {
if (radioBtn.isSelected()) {
System.out.println(radioBtn.getActionCommand() + " is selected");
}
}
System.out.println();
}
}
private static void createAndShowGui() {
AddRadioButtons mainPanel = new AddRadioButtons();
JFrame frame = new JFrame("Add Radio Buttons");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.getContentPane().add(mainPanel);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
public static void main(String[] args) {
// run the Swing code in a thread-safe manner
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}