有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java使用JRadioButtons设置两个文本字段

这里对Java非常陌生。如何使用JRadioButton设置两个不同的文本字段?这三个按钮是:
1.7在5.35%时
2.15分,5.5%
3.30,5.75%

选项1将字段1设置为7,将字段2设置为5.35
选项2将field1设置为15,field2设置为5.5
选项3将field1设置为30,field2设置为5.75

写这段代码最快最简单的方法是什么?看起来很简单,但我和JRadioButtons玩得很开心

谢谢

编辑:这是代码。看起来我就快到了,但是,我仍然无法使用单选按钮将数据放入字段中。表示我需要将类型更改为int,但如果我这样做,它将不再是可输入的字段

//import all needed functionality
import javax.swing.*;

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.*;
public class ScrofaniWk3Alt extends JApplet{

/**
 * 
 */
private static final long serialVersionUID = 1L;

/**
 * @param args
 */
    // Declare variables and put code application logic here

    String userInput = null;
    JLabel loanAmountLabel = new JLabel("Loan Amount: ");
    JTextField loanAmount = new JTextField();
    double[] ratesList = {0.0535, 0.055, 0.0575};
    JLabel rateLabel=new JLabel("Interest Rate: ");
    JTextField rate=new JTextField();
    String[] yearsList = {"7","15","30"};
    JLabel yearsLabel=new JLabel("Years of Payment: ");
    JTextField years=new JTextField();
    JRadioButton sevenButton = new JRadioButton("7");
    JRadioButton fifteenButton = new JRadioButton("15");
    JRadioButton thirtyButton = new JRadioButton("30");
    JLabel payLabel=new JLabel("Monthly Payment: ");
    JLabel payment=new JLabel();
    JButton calculate=new JButton("Calculate");
    JButton clear=new JButton("Clear");
    JButton quit=new JButton("Quit");
    JTextArea payments=new JTextArea();
    JScrollPane schedulePane=new JScrollPane(payments);
    Container mortCalc = getContentPane();


    public void init() {
//Configure the radio buttons to input data into fields
    sevenButton.setActionCommand("Radio1");
    fifteenButton.setActionCommand("Radio2");
    thirtyButton.setActionCommand("Radio3");

    ButtonGroup chooseYears = new ButtonGroup();
    chooseYears.add(sevenButton);
    chooseYears.add(fifteenButton);
    chooseYears.add(thirtyButton);
    }

    public void actionPerformed(ActionEvent e) {
    if ("Radio1".equals(e.getActionCommand())) {
        years = 7;
        rate = 5.35;   
    }
    if ("Radio2".equals(e.getActionCommand())) {
        years = 15;
        rate = 5.5;   
    }
    if ("Radio3".equals(e.getActionCommand())) {
        years = 30;
        rate = 5.75;   
    } 


    calculate.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            try {    
                // Perform the calculation

                double yearsCalc=Integer.parseInt(years.getText())*12;
                double rateCalc=Double.parseDouble(rate.getText())/12;
                double principalCalc=Double.parseDouble(loanAmount.getText());
                double monthlyPayment=principalCalc*Math.pow(1+rateCalc,yearsCalc)*rateCalc/(Math.pow(1+rateCalc,yearsCalc)-1);

                DecimalFormat df = new DecimalFormat("$###,###.##");
                payment.setText(df.format(monthlyPayment));

                // Perform extra calculations to show the loan amount after each subsequent payoff
                double principal=principalCalc;
                int month;
                StringBuffer buffer=new StringBuffer();
                buffer.append("Month\tAmount\tInterest\tBalance\n");
                for (int f=0; f<yearsCalc; f++) {
                month=f+1;
                double interest=principal*rateCalc;
                double balance=principal+interest-monthlyPayment;
                buffer.append(month+"\t"); buffer.append(new String(df.format(principal))+"\t");
                buffer.append(new String(df.format(interest))+"\t"); buffer.append(new String(df.format(balance))+"\n");
                principal=balance;
                }
                payments.setText(buffer.toString());
                } catch(Exception ex) {
                System.out.println(ex);
            }
        }
    });
    clear.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            loanAmount.setText(""); payment.setText(""); payments.setText("");
        }
    });
    quit.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            System.exit(1);
        }
    });     
    //Config GUI
    JPanel panelMort=new JPanel();
    panelMort.setLayout(new GridLayout(5,2));
    panelMort.add(loanAmountLabel);
    panelMort.add(loanAmount);  
    panelMort.add(new Label());
    panelMort.add(sevenButton);
    panelMort.add(fifteenButton);
    panelMort.add(thirtyButton);
    panelMort.add(yearsLabel);
    panelMort.add(years);
    panelMort.add(rateLabel);
    panelMort.add(rate);
    panelMort.add(payLabel);
    panelMort.add(payment);

    JPanel buttons=new JPanel();
    buttons.setLayout(new BoxLayout(buttons, BoxLayout.X_AXIS));
    buttons.add(calculate); buttons.add(clear); buttons.add(quit);

    JPanel panelMort2=new JPanel();
    panelMort2.setLayout(new BoxLayout(panelMort2, BoxLayout.Y_AXIS));
    panelMort2.add(panelMort); panelMort2.add(buttons);

    mortCalc.add(BorderLayout.NORTH, panelMort2);
    mortCalc.add(BorderLayout.CENTER, schedulePane);
}
public static void main(String[] args) {
    JApplet applet = new ScrofaniWk3Alt();
    JFrame frameMort = new JFrame("ScrofaniWk3Alt");
    frameMort.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    frameMort.getContentPane().add(applet);
    frameMort.setSize(500,1000);

    frameMort.setResizable(true);
    frameMort.setVisible(true);

    applet.init();
    applet.start();

}
}

共 (1) 个答案

  1. # 1 楼答案

    阅读Swing教程中关于How to Use Radio Buttons的部分。基本上,您可以为每个按钮添加一个ActionListener,然后在文本字段中设置值

    如果你需要更多帮助,那么发布你的SSCCE,展示你在阅读教程后的尝试