- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是到目前为止我的所有代码,我不确定问题是什么。这是一个杂货收据程序,应该处理异常,并且用户可以更新文件中的产品列表。该程序将搜索该文件,并将收据吐出到我的计算机中名为“购买”的所有产品的收据的文件中。
这是代码:
package groceries;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.text.NumberFormat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Project2_ReceiptPrinterV2 {
public static void main(String[] args) throws FileNotFoundException {
// Declaring all of the variables and containers that the program needs
File inFile = new File("C:\\Users\\camer\\Desktop\\CECS 274\\Pricelist.txt");
Scanner fileReader = new Scanner(inFile);
Scanner userInput = new Scanner(System.in);
String input;
String itemRegex = "([\\w |\\W]+[s|\\w])\\s+(\\w[\\w |\\W]+\\S)\\s+([\\w |\\W]+\\s[\\w]+\\w)";
String regexFull = "([\\w |\\W]+[s|\\w])\\s+(\\w[\\w |\\W]+\\S)\\s+([\\w |\\W]+\\s[\\w]+\\w)\\s+([\\w |\\W]+)";
Pattern fullItemPattern = Pattern.compile(regexFull, Pattern.CASE_INSENSITIVE);
Pattern noPricePattern = Pattern.compile(itemRegex, Pattern.CASE_INSENSITIVE);
Matcher fileMatcher;
Matcher userMatcher;
System.out.println("Enter the output filename: "); // Create the file name
String outFileName = userInput.nextLine();
PrintWriter outFile = new PrintWriter("C:\\Users\\camer\\Desktop\\Receipts\\" + outFileName +".txt");
StringBuilder returnedString = new StringBuilder();
final int maxLen = 60;
ArrayList<Item> products = new ArrayList<>();
ArrayList<String> buffer = new ArrayList<>();
NumberFormat formatter = NumberFormat.getCurrencyInstance();
String product;
int holder;
boolean inList = false;
double total = 0.0;
int numberOfItems;
String quantifier;
String itemPrice;
boolean runProgram = true;
String ProductEntry = "";
String ProductEntryName = "";
String ProductQuality = "";
double ProductEntryPrice = 0;
// Starting the user input loop
while (runProgram) {
System.out.println("Enter a product to add to your cart:\nEnter 'done' when finished.");
input = userInput.nextLine().trim();
if (input.equalsIgnoreCase("done")) {
break;
}
else {
userMatcher = noPricePattern.matcher(input);
}
try {
if (userMatcher.find()) {
while (fileReader.hasNextLine()) {
fileReader = new Scanner(inFile);
fileMatcher = fullItemPattern.matcher(fileReader.nextLine());
if (fileMatcher.find()) {
if (fileMatcher.group(1).trim().equals(userMatcher.group(1)) && fileMatcher.group(2).trim().equals(userMatcher.group(2)) && fileMatcher.group(3).trim().equals(userMatcher.group(3))){
product = fileMatcher.group(1) + " " + fileMatcher.group(2).trim();
Item itemHolder = new Item(product, Double.parseDouble(fileMatcher.group(4)), fileMatcher.group(3).trim());
if (products.contains(itemHolder)) {
// Adding the first product
products.get(products.indexOf(itemHolder)).incQuantity();
}
else {
// Adding multiple products after that
products.add(itemHolder);
}
// User feedback that the item was added
inList = true;
System.out.println("Product added!");
}
}
}
}
if (!inList) {
// If there is no such item in the file
throw new IOException();
}
else {
inList = false;
}
// Resetting the fileReader for each new item
fileReader.close();
fileReader = new Scanner(inFile);
}
catch(IOException exception) {
System.out.println("Error! Selected product is not listed in file!");
System.out.println("Would you like to correct your entry?");
String UserResponse = userInput.nextLine().trim();
if(UserResponse.equals("yes")) {
}
if (UserResponse.equals("no")) {
System.out.println("Would you like to add your selected entry in to the file");
String UserResponse2 = userInput.nextLine().trim();
if(UserResponse2.equals("yes")) {}
try {
File PriceList = new File("C:\\Users\\camer\\Desktop\\CECS 274\\Pricelist.txt");
FileWriter NewEntry = new FileWriter(PriceList, true);
BufferedWriter added = new BufferedWriter(NewEntry);
added.newLine();
System.out.println("Adding selected product into file now ...");
System.out.println("Enter Product name: ");
ProductEntry = userInput.nextLine().trim();
ProductEntryName = ProductEntry.split(" ")[0];
ProductQuality = ProductEntry.split(" ")[1];
ProductEntryName = ProductEntryName + " " + ProductQuality;
System.out.println("Enter the Size/Weight of the product");
String ProductEntrySize = userInput.nextLine().trim();
System.out.println("Enter the price of the product");
ProductEntryPrice = userInput.nextDouble();
String NewProduct = ProductEntryName + " " + ProductEntrySize + " " + ProductEntryPrice;
added.write(NewProduct);
System.out.println("Product added!\n");
added.close();
}
catch (IOException error) {
error.printStackTrace();
}
if(UserResponse2.equals("no")) {
break;
}
}
}
finally {
// Outputting to the file
for (int i = 0; i <= 60; i ++) {
outFile.print("_");
}
outFile.println();
outFile.println("Java Market");
outFile.println("242 W Santa Cruz St");
outFile.println("San Pedro, CA");
outFile.println("90731");
outFile.println();
outFile.println("Product Subtotal");
// Looping through products and processing multiples, formatting strings, and outputting to the file
for (Item a : products) {
buffer.add(a.toString());
total += a.getTotalPrice();
}
Collections.sort(buffer);
for (String b : buffer) {
outFile.println(b);
}
//outFile.println();
for (int i = 0; i <= 60; i ++) {
outFile.print("_");
}
// Skipping lines and printing the formatted total
outFile.println();
outFile.println();
outFile.println();
outFile.printf("Your total is: $%.2f", total);
outFile.println();
for (int i = 0; i <= 60; i ++) {
outFile.print("_");
}
// Closing the out file and file reader after everything is done
outFile.close();
fileReader.close();
}
}
}
}
最佳答案
每次读取一行时,您都会在 while
循环中将 fileReader
分配给新的 Scanner
。您想要做的是将其分配在 try
block 的顶部。这样,它将在 block 的末尾关闭。另外,如果这就是您想要做的,请删除顶部的分配。此外,您可以让 Java 自动关闭它,如下所示:
try (Scanner fileReader = new Scanner(inFile)) {
...
另一个注意事项是,使用 BufferedReader
通常比使用 Scanner
更快(而且可能更容易)。我相信您的情况唯一的区别是使用 readLine()
而不是 nextLine()
。您还可以检查 null
行而不是 fileReader.hasNextLine()
。看起来像这样:
try (BufferedReader fileReader = new BufferedReader(new FileReader(inFile))) {
...
请注意,如果您使用此功能,则不应在其他任何地方声明或分配 fileReader
或关闭它,因为当用作 try
block 资源时它会自动关闭.
关于java - 控制台说扫描仪已关闭,我需要将其重新打开。 Java错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52712213/
我正在尝试用 C 语言编写一个使用 gstreamer 的 GTK+ 应用程序。 GTK+ 需要 gtk_main() 来执行。 gstreamer 需要 g_main_loop_run() 来执行。
我已经使用 apt-get 安装了 opencv。我得到了以下版本的opencv2,它工作正常: rover@rover_pi:/usr/lib/arm-linux-gnueabihf $ pytho
我有一个看起来像这样的 View 层次结构(基于其他答案和 Apple 的使用 UIScrollView 的高级 AutoLayout 指南): ScrollView 所需的2 个步骤是: 为 Scr
我尝试安装 udev。 udev 在 ./configure 期间给我一个错误 --exists: command not found configure: error: pkg-config and
我正在使用 SQLite 3。我有一个表,forums,有 150 行,还有一个表,posts,有大约 440 万行。每个帖子都属于一个论坛。 我想从每个论坛中选择最新帖子的时间戳。如果我使用 SEL
使用 go 和以下包: github.com/julienschmidt/httprouter github.com/shwoodard/jsonapi gopkg.in/mgo.v2/bson
The database仅包含 2 个表: 钱包(100 万行) 事务(1500 万行) CockroachDB 19.2.6 在 3 台 Ubuntu 机器上运行 每个 2vCPU 每个 8GB R
我很难理解为什么在下面的代码中直接调用 std::swap() 会导致编译错误,而使用 std::iter_swap 编译却没有任何错误. 来自 iter_swap() versus swap() -
我有一个非常简单的 SELECT *用 WHERE NOT EXISTS 查询条款。 SELECT * FROM "BMAN_TP3"."TT_SPLDR_55E63A28_59358" SELECT
我试图按部分组织我的 .css 文件,我需要从任何文件访问文件组中的任何类。在 Less 中,我可以毫无问题地创建一个包含所有文件导入的主文件,并且每个文件都导入主文件,但在 Sass 中,我收到一个
Microsoft.AspNet.SignalR.Redis 和 StackExchange.Redis.Extensions.Core 在同一个项目中使用。前者需要StackExchange.Red
这个问题在这里已经有了答案: Updating from Rails 4.0 to 4.1 gives sass-rails railties version conflicts (4 个答案) 关
我们有一些使用 Azure DevOps 发布管道部署到的现场服务器。我们已经使用这些发布管道几个月了,没有出现任何问题。今天,我们在下载该项目的工件时开始出现身份验证错误。 部署组中的节点显示在线,
Tip: instead of creating indexes here, run queries in your code – if you're missing any indexes, you
你能解释一下 Elm 下一个声明中的意思吗? (=>) = (,) 我在 Elm architecture tutorial 的例子中找到了它 最佳答案 这是中缀符号。实际上,这定义了一个函数 (=>
我需要一个 .NET 程序集查看器,它可以显示低级详细信息,例如元数据表内容等。 最佳答案 ildasm 是 IL 反汇编程序,具有低级托管元数据 token 信息。安装 Visual Studio
我有两个列表要在 Excel 中进行比较。这是一个很长的列表,我需要一个 excel 函数或 vba 代码来执行此操作。我已经没有想法了,因此转向你: **Old List** A
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想要改善这个问题吗?更新问题,以便将其作为on-topi
我正在学习 xml 和 xml 处理。我无法很好地理解命名空间的存在。 我了解到命名空间帮助我们在 xml 中分离相同命名的元素。我们不能通过具有相同名称的属性来区分元素吗?为什么命名空间很重要或需要
我搜索了 Azure 文档、各种社区论坛和 google,但没有找到关于需要在公司防火墙上打开哪些端口以允许 Azure 所有组件(blob、sql、compute、bus、publish)的简洁声明
我是一名优秀的程序员,十分优秀!