- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法从流程 Pane 的文本字段中的用户输入中获取文本。这看起来非常基本,我已经尝试过其他类似帖子的建议,但它们没有帮助。我需要访问输入以便将其转换为 double ,以便我可以对其进行计算。我的按钮设置为在单击时获取用户输入,这就是我遇到错误消息的时候:
Exception in thread "JavaFX Application Thread"
java.lang.NumberFormatException: empty String
如有任何其他建议,我们将不胜感激;我是一名新程序员。该问题首先出现在 getLoanAmount 方法中,但也出现在需要获取我使用的其他文本字段中的文本的其他方法上。
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Insets;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.scene.layout.FlowPane;
//this class sets up the GUI and casts the data collected to variables for usage elsewhere
public class loanWithFeatures extends Application {
//define my constants
final int MONTHS_IN_YEAR = 12;
TextField loanAmountTF = new TextField();
TextField termTF = new TextField();
TextField interestRateTF = new TextField();
//main method
public static void main(String[] args) {
Application.launch(args);
}
@Override
public void start(Stage primaryStage) {
//define my button
Button btGo = new Button("Calculate Total Interest Cost");
btGo.setOnAction(new Calculate());
//make my flowpane
FlowPane flow = new FlowPane();
flow.setPadding(new Insets(11, 12, 13, 14));
flow.setHgap(5);
flow.setVgap(5);
//for some reason this has to be in this method. It didn't work above
loanAmountTF.setPrefWidth(800);
termTF.setPrefWidth(800);
interestRateTF.setPrefWidth(800);
flow.getChildren().addAll(new Label("Loan Amount:"), loanAmountTF);
termTF.setPrefColumnCount(2);
flow.getChildren().addAll(new Label("Term"), termTF);
interestRateTF.setPrefColumnCount(2);
flow.getChildren().addAll(new Label("Rate"), interestRateTF);
flow.getChildren().addAll(btGo);
//make the scene, put scene in flowpane
Scene scene = new Scene(flow);
//stage title
primaryStage.setTitle("Total Interest Cost");
//add scene to the stage
primaryStage.setScene(scene);
//show the stage
primaryStage.show();
}
class Calculate implements EventHandler<ActionEvent> {
@Override
public void handle(ActionEvent e) {
//define my variables
double loanAmount = 0, term = 0, rate = 0, monthlyPayment = 0, monthlyInterest = 0, monthlyPrincipal =0, totalRepaid = 0, totalInterest =0, totalInterestPercentage =0;
double periodicInterestRate = 0, remainingPrincipal =0;
loanWithFeatures newLoan = new loanWithFeatures();
loanAmount = newLoan.getLoanAmount();
term = newLoan.getTerm(term);
rate = newLoan.getRate(rate);
periodicInterestRate = newLoan.periodicInterestRate(rate);
monthlyPayment = newLoan.monthlyPayment(loanAmount, periodicInterestRate, term);
remainingPrincipal = newLoan.remainingPrincipal(loanAmount, monthlyPayment, monthlyInterest);
monthlyInterest = newLoan.monthlyInterest(monthlyPayment, remainingPrincipal, periodicInterestRate);
monthlyPrincipal = newLoan.monthlyPrincipal(monthlyPayment, monthlyInterest);
totalRepaid = newLoan.totalRepaid(monthlyPayment, term);
totalInterest = newLoan.totalInterest(totalRepaid, loanAmount);
totalInterestPercentage = newLoan.totalInterestPercentage(loanAmount, totalInterest);
}
}
//method to get loan amount
public double getLoanAmount() {
double loanAmountDouble = Double.parseDouble(loanAmountTF.getText());
return loanAmountDouble;
}
//method to get term
public int getTerm(double term) {
//define a string var, assign the value from textfield to that, cast to int, return int
String termInput;
termInput = termTF.getText();
int termIntYear = Integer.parseInt(termInput);
int termIntMonths = termIntYear * MONTHS_IN_YEAR;
return termIntMonths;
}
//method to get rate
public double getRate(double rate) {
String rateInput;
rateInput = interestRateTF.getText();
double rateDouble = Integer.parseInt(rateInput);
return rateDouble;
}
//method to define balloon payment, when it occurs
//come back to this, I want it to be a checkbox, I don't know how to do that yet
//method, get interest only or no?
/*public boolean getInterestOnly(boolean interestOnly) {
Boolean interestOnlyBool = false;
String interestOnlyString = "uninitialized";
interestOnlyString = interestOnlyTF.getText();
//this only works if they input true, not something like yes
//TODO redo this with a radio list or dropdown that shows only true or false as selections
interestOnlyBool = Boolean.parseBoolean(interestOnlyString);
return interestOnlyBool;
} */
//method, type of amortization
//TODO come do this later when I know other types of amortization, just make it do full amortization right now
//method early repayment penalty?
//TODO do this after I do the math of the prepayment penalty
//this method calculates the monthly payment
public double monthlyPayment(double loanAmount, double periodicInterestRate, double term) {
double monthlyPaymentDenominator = (Math.pow(1 + periodicInterestRate, term) -1) / (periodicInterestRate * Math.pow(1 + periodicInterestRate, term));
double monthlyPayment = loanAmount / monthlyPaymentDenominator;
return monthlyPayment;
}
public double remainingPrincipal(double loanAmount, double monthlyPayment, double monthlyInterest ) {
double remainingPrincipal = loanAmount - (monthlyPayment - monthlyInterest);
return remainingPrincipal;
}
public double monthlyInterest(double monthlyPayment, double remainingPrincipal, double periodicIntRate) {
double monthlyInterest = remainingPrincipal * periodicIntRate;
return monthlyInterest;
}
//this method calculates monthly principal payment
public double monthlyPrincipal(double monthlyPayment, double monthlyInterest) {
double monthlyPrincipal = monthlyPayment - monthlyInterest;
return monthlyPrincipal;
}
public double periodicInterestRate(double rate) {
double periodicIntRate = rate / MONTHS_IN_YEAR;
return periodicIntRate;
}
public double totalRepaid(double monthlyPayment, double term) {
double totalRepaid = monthlyPayment * term;
return totalRepaid;
}
//this method calculates the total interest paid on the loan
public double totalInterest(double totalRepaid, double loanAmount) {
double totalInterest = totalRepaid - loanAmount;
return totalInterest;
}
//this method calculates total interest percentage
public double totalInterestPercentage(double loanAmount, double totalInterest) {
double totalInterestPercentage = totalInterest/loanAmount;
return totalInterestPercentage;
}
}
最佳答案
您遇到了有关 Java 中的实例和类的基本问题。您正在做的是调用类 loanWithFeatures
的新实例。此实例与您的应用程序在 main
中启动的实例不同(您尝试从中获取 TextField
的文本)。
loanWithFeatures newLoan = new loanWithFeatures();
loanAmount = newLoan.getLoanAmount();
所以我的建议是省略实例调用并这样做:
class Calculate implements EventHandler<ActionEvent> {
@Override
public void handle(ActionEvent e) {
//define my variables
double loanAmount = 0, term = 0, rate = 0, monthlyPayment = 0, monthlyInterest = 0, monthlyPrincipal =0, totalRepaid = 0, totalInterest = 0, totalInterestPercentage = 0;
double periodicInterestRate = 0, remainingPrincipal = 0;
loanAmount = newLoan.getLoanAmount();
term = getTerm(term);
rate = getRate(rate);
periodicInterestRate = periodicInterestRate(rate);
monthlyPayment = monthlyPayment(loanAmount, periodicInterestRate, term);
remainingPrincipal = remainingPrincipal(loanAmount, monthlyPayment, monthlyInterest);
monthlyInterest = monthlyInterest(monthlyPayment, remainingPrincipal, periodicInterestRate);
monthlyPrincipal = monthlyPrincipal(monthlyPayment, monthlyInterest);
totalRepaid = totalRepaid(monthlyPayment, term);
totalInterest = totalInterest(totalRepaid, loanAmount);
totalInterestPercentage = totalInterestPercentage(loanAmount, totalInterest);
}
}
关于java - 无法获取文本字段中的文本输入以解析为双倍,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51180921/
我正在编写一个具有以下签名的 Java 方法。 void Logger(Method method, Object[] args); 如果一个方法(例如 ABC() )调用此方法 Logger,它应该
我是 Java 新手。 我的问题是我的 Java 程序找不到我试图用作的图像文件一个 JButton。 (目前这段代码什么也没做,因为我只是得到了想要的外观第一的)。这是我的主课 代码: packag
好的,今天我在接受采访,我已经编写 Java 代码多年了。采访中说“Java 垃圾收集是一个棘手的问题,我有几个 friend 一直在努力弄清楚。你在这方面做得怎么样?”。她是想骗我吗?还是我的一生都
我的 friend 给了我一个谜语让我解开。它是这样的: There are 100 people. Each one of them, in his turn, does the following
如果我将使用 Java 5 代码的应用程序编译成字节码,生成的 .class 文件是否能够在 Java 1.4 下运行? 如果后者可以工作并且我正在尝试在我的 Java 1.4 应用程序中使用 Jav
有关于why Java doesn't support unsigned types的问题以及一些关于处理无符号类型的问题。我做了一些搜索,似乎 Scala 也不支持无符号数据类型。限制是Java和S
我只是想知道在一个 java 版本中生成的字节码是否可以在其他 java 版本上运行 最佳答案 通常,字节码无需修改即可在 较新 版本的 Java 上运行。它不会在旧版本上运行,除非您使用特殊参数 (
我有一个关于在命令提示符下执行 java 程序的基本问题。 在某些机器上我们需要指定 -cp 。 (类路径)同时执行java程序 (test为java文件名与.class文件存在于同一目录下) jav
我已经阅读 StackOverflow 有一段时间了,现在我才鼓起勇气提出问题。我今年 20 岁,目前在我的家乡(罗马尼亚克卢日-纳波卡)就读 IT 大学。足以介绍:D。 基本上,我有一家提供簿记应用
我有 public JSONObject parseXML(String xml) { JSONObject jsonObject = XML.toJSONObject(xml); r
我已经在 Java 中实现了带有动态类型的简单解释语言。不幸的是我遇到了以下问题。测试时如下代码: def main() { def ks = Map[[1, 2]].keySet()
一直提示输入 1 到 10 的数字 - 结果应将 st、rd、th 和 nd 添加到数字中。编写一个程序,提示用户输入 1 到 10 之间的任意整数,然后以序数形式显示该整数并附加后缀。 public
我有这个 DownloadFile.java 并按预期下载该文件: import java.io.*; import java.net.URL; public class DownloadFile {
我想在 GUI 上添加延迟。我放置了 2 个 for 循环,然后重新绘制了一个标签,但这 2 个 for 循环一个接一个地执行,并且标签被重新绘制到最后一个。 我能做什么? for(int i=0;
我正在对对象 Student 的列表项进行一些测试,但是我更喜欢在 java 类对象中创建硬编码列表,然后从那里提取数据,而不是连接到数据库并在结果集中选择记录。然而,自从我这样做以来已经很长时间了,
我知道对象创建分为三个部分: 声明 实例化 初始化 classA{} classB extends classA{} classA obj = new classB(1,1); 实例化 它必须使用
我有兴趣使用 GPRS 构建车辆跟踪系统。但是,我有一些问题要问以前做过此操作的人: GPRS 是最好的技术吗?人们意识到任何问题吗? 我计划使用 Java/Java EE - 有更好的技术吗? 如果
我可以通过递归方法反转数组,例如:数组={1,2,3,4,5} 数组结果={5,4,3,2,1}但我的结果是相同的数组,我不知道为什么,请帮助我。 public class Recursion { p
有这样的标准方式吗? 包括 Java源代码-测试代码- Ant 或 Maven联合单元持续集成(可能是巡航控制)ClearCase 版本控制工具部署到应用服务器 最后我希望有一个自动构建和集成环境。
我什至不知道这是否可能,我非常怀疑它是否可能,但如果可以,您能告诉我怎么做吗?我只是想知道如何从打印机打印一些文本。 有什么想法吗? 最佳答案 这里有更简单的事情。 import javax.swin
我是一名优秀的程序员,十分优秀!