0

我正在使用 swing 编写一个带有 gui 的简单贷款计算器。我使用 DecimalFormat 确保以我的指定格式 ####.## 为我的 JFormattedTextField 捕获输入。

public static void main(String[] args) {
    JFormattedTextField loanAmountField = new JFormattedTextField(new DecimalFormat("####.##"));
    JFormattedTextField interestRateField = new JFormattedTextField(new DecimalFormat("####.##"));
    JFormattedTextField yearField = new JFormattedTextField(new DecimalFormat("####.##"));
    JFormattedTextField monthlyPaymentField = new JFormattedTextField(new DecimalFormat("####.##"));
}

当用户按下我的“计算”按钮时,它会计算并显示monthlyPaymentField。

为了测试我的程序是否能正确显示它,我尝试为monthlyPaymentField 分配12.22 的值,但我收到一个错误,提示应该将monthlyPaymentField 声明为double。

class CalculateListener implements ActionListener {
public CalculateListener (JFormattedTextField loanAmountField, JFormattedTextField     monthlyPaymentField, JFormattedTextField interestRateField, JFormattedTextField yearField, int monthlyTest)
{
  this.interestRateField = interestRateField;   
  this.yearField = yearField;
  this.loanAmountField = loanAmountField;
  this.monthlyPaymentField = monthlyPaymentField;
  this.monthlyTest = monthlyTest;
}

public void actionPerformed(ActionEvent event){

   monthlyPaymentField = 12.22;

    }

}

我该如何解决这个问题,以便我仍然可以将我的 JFormattedTextField 与 DecimalFormat 一起使用,但仍然可以在我的monthlyPaymentField 上显示一个浮点数?

4

2 回答 2

2

您可以使用该setValue方法;

monthlyPaymentField.setValue(new Double(12.22)); 
于 2012-06-21T23:39:05.287 回答
1

使用setValue,即:

monthlyPaymentField.setValue(new Double(12.22));

How to Use Formatted Text Fields教程有一个很好的双打示例。

于 2012-06-21T23:40:20.260 回答