gpt4 book ai didi

java - 写入或读取文件

转载 作者:行者123 更新时间:2023-12-01 17:23:54 25 4
gpt4 key购买 nike

我正在尝试编写一个程序,用户可以选择将数据写入文件或读取文件。

我不知道为什么我的 if-else if 结构无法正常工作。当我尝试查看数据时,程序会显示数据,然后在不应该的情况下要求更多输入。

我将发布我所希望的内容,希望有人可以帮助解决这个看似愚蠢而简单的问题。

import java.util.Scanner;
import java.io.*;

public class Candy
{
public static void main(String[] args)
throws IOException
{
String candyname;
String input="";

//create scanner object
Scanner keyboard=new Scanner(System.in);

System.out.print("[V]iew or [A]ppend Database (V or A)?===>");
String choice=keyboard.nextLine();

if (choice.equalsIgnoreCase("V"))
{
//open the file
File file=new File("candy");
Scanner inputFile=new Scanner(file);

//display the lines
while (inputFile.hasNext())
{
//read a line
candyname=inputFile.nextLine();

//display a line
System.out.println(candyname);
}

//close the file
inputFile.close();

System.out.println("\nComplete!");
}

else if (choice.equalsIgnoreCase("A"));
{
//open the file
FileWriter fwriter=new FileWriter("candy", true);

System.out.println("Type 'end' to STOP entering names\n");
do
{
//get the name of the candy
System.out.print("Enter the name of the candy===>");
candyname=keyboard.nextLine();

if (candyname.equalsIgnoreCase("end"))
{
//break; //breaks out of loop
//or use a null if clause (empty)
}
else if (!(candyname.equalsIgnoreCase("end")))
{
//append to file
PrintWriter outputFile=new PrintWriter(fwriter);
outputFile.println(candyname);
}

}while (!(candyname.equalsIgnoreCase("end")));// || candyname !="END");

//close the file
fwriter.close();

System.out.println("\nComplete!");

}
}
}

最佳答案

因为你的 else if 已关闭

 else if (choice.equalsIgnoreCase("A"));

删除分号;

 else if (choice.equalsIgnoreCase("A"))

关于java - 写入或读取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16531338/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com