- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个展示最便宜一双鞋子的程序。数据来自文本文件。输入鞋子的颜色、制造商和类型后,我收到以下错误消息:
java.lang.NumberFormatException: For input string: "Price"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at Boots.main(Boots.java:47)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at edu.rice.cs.drjava.model.compiler.JavacCompiler.runCommand(JavacCompiler.java:272)
我已经束手无策了。请帮忙!
这是代码。
import java.util.Scanner;
import java.io.*;
import java.util.StringTokenizer;
public class Boots
{
public static void main(String[] args) throws IOException
{
Scanner keyboard = new Scanner(System.in);
String manufact, color, type;
System.out.print("Enter the boot manufacturer.");
manufact = keyboard.nextLine();
manufact = manufact.replaceAll("\\s+", "");
System.out.print("Enter the type of boot.");
type = keyboard.nextLine();
type = type.replaceAll("\\s+", "");
System.out.print("Enter the boot color.");
color = keyboard.nextLine();
color = color.replaceAll("\\s+", "");
/* Open boots.txt.*/
File inputFile = new File("Boots.txt");
if (!inputFile.exists()) System.out.print("I'm sorry, we are experiencing technical difficulties. Please try again later.");
Scanner warehouse = new Scanner(inputFile);
String[] compData = new String[25];
int price = 0; // cheapest pair of shoes
String finalVendor = "";
String finalType = "";
String finalManufact = "";
String finalColor = ""; //information of cheapest pair of shoes
/* Read through file, and save each line as a compData array, each word tokenized as a compData subarray.*/
do {
String nLine = warehouse.nextLine();
StringTokenizer tokens = new StringTokenizer(nLine);
for (int i = 0; i<5; i++)
{
compData[i] = tokens.nextToken();
}
int priceParsed = Integer.parseInt(compData[4]);
if (compData[1].equalsIgnoreCase(manufact))
if (compData[3].equalsIgnoreCase(color))
if (compData[2].equalsIgnoreCase(type))
if (priceParsed <= price)
{
price = priceParsed;
finalVendor = compData[0]; finalManufact = compData[1]; finalType = compData[2]; finalColor=compData[3];
}
} while (warehouse.hasNext());
if (price<=0)
{System.out.printf("Meet your new shoes!\nThey are %s %s by %s. You can get them for $%.2s at %s.", finalColor,
finalType, finalVendor, finalManufact, price);} else {System.out.print("We have no such merchandise at this time.");};
warehouse.close();
keyboard.close();
}
}
最佳答案
您所要做的就是添加 = "";到字符串变量声明的末尾。
String finalVendor = "";
String finalType = "";
String finalManufact = "";
String finalColor = ""; //information of cheapest pair of shoes
这将消除您的错误。如果您在使用 parseInt 时遇到问题,您需要检查您正在查看的数组中的内容,并确保您从分词器中获取了正确的数据。
关于java - 代码中的运行时错误 - "NumberFormatException",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27415199/
我正在尝试使用 Integer.parseInt(simNumber) 将 String 转换为 int,但我收到错误消息。如何将 String 转换为 int?我在网上搜索了一下,找到了Intege
每次我尝试启动我的代码时,我总是遇到同样的错误: java.lang.NumberFormatException: For input string: "x" at java.lang.Numbe
在检查我的错误处理代码时偶然发现了这个。当您调用 Integer.parseInt(null) 时,Java 抛出 NumberFormatException 而 Float.parseFloat(n
如果有人可以看看我在 Selenium 方面遇到的问题。我尝试使用以下方法访问上述计算器中的结果: public String getAttributeValue(WebElement element
嗯,我很无聊,所以我想做一个二进制>十进制转换器。我将转换器的上限设置为 30 位数字 (1073741823) 或 (0111111111111111111111111111111)。我遇到的问题是
在以下代码中,Clojure (1.2) 打印出错误消息: (try (let [value "1,a"] (map #(Integer/parseInt %) (.split value
String str="123456.7855456677"; ParsePosition parsePosition = new ParsePosition(0); NumberFormat num
代码: String myVar = "1255763710960"; int myTempVar=0; try { myTempVar = Integer.valueOf(myVar); }
我在NumberFormatException代码中收到Grails错误,该错误是将电影分类到数据库中。该错误表明它来自cron插件。我已经完成了研究,并且一直在尝试使用NumberFormatExc
我在将字符串解析为原语时遇到问题。 File file1 = new File("bankData.txt"); Scanner sc = new Scanner(fi
所以我试图从日期列表中查找最新日期,但我不断收到 NumberFormatException。有什么办法可以解决这个问题吗? import java.util.*; public class Date
如果使用变量 bin1 它不会转换,但是如果我用 bin2 替换参数,它似乎可以工作。 我尝试使用 long 而不是 int。还是一样。 public class Test{ public s
我正在尝试找出如何在代码中捕获数字格式异常错误,这样如果用户在字符串中输入字母并且我的程序尝试将其解析为 int 我的程序将不会抛出错误而是停止并返回一个 boolean 值。我还试图了解,如果 tr
该程序的本质目的是将学生信息写入文件并从同一文件中读取。该程序包括一个 if 语句,用于判断学生是否处于良好信誉或留校察看状态,每个语句都有各自的文件(goodstand.txt 和 probatio
我正在用 Python/WLST 编写代码,以自动连接、启动和停止 weblogic 中的托管服务器。当我启动 Python 时,出现以下错误。 异常的含义是什么?我该如何解决它? Initializ
这是我的代码: public void setAreaAccessPoints(){ String mac = "",essid = "",status = ""; int stre
我正在用 Java 开发一个应用程序,发现了这个奇怪的行为: 如果通过控制面板将区域设置格式设置为匈牙利语(系统默认值),我会收到此异常,但如果我将其设置为英语格式,则它可以正常工作。也适用于虚拟 M
我正在尝试制作一个计算器应用程序,但不幸的是我无法解析字符串。 应用程序接受输入并将其显示在 EditText et2 中。当按下“等于”键时,计算器将执行以下工作。 et2 = (EditText)
我有一个文件,其中包含许多电影标题及其年份、5 星评级和长度。我正在尝试读取该文件并将标题、年份、评级和长度存储为变量。我遇到的问题是在我的检索年份的代码中。该代码可以编译,但在运行时,当它到达具有多
我正在解决亚马逊 Interview Street 网站上的 Connected Sets 问题 https://amazon.interviewstreet.com/challenges我的代码对于
我是一名优秀的程序员,十分优秀!