gpt4 book ai didi

java - 从文本文件用 Java 创建菜单语句

转载 作者:行者123 更新时间:2023-12-01 13:45:15 25 4
gpt4 key购买 nike

我想允许用户选择一个文本文件,其中包含不同的投票选项,让程序读取该文件,然后创建一个菜单,用户可以从中对这些选项进行投票,并将结果放在单独的菜单中文档。我让程序读取文本文件并在输出中显示选项,但我不知道如何将其放入人们可以选择的菜单中。我知道它与数组有关,但问题是程序应该设计为无论文本文件中的选项数量如何,菜单都会自动更改。

我编辑了代码,它目前正在运行。我分配了一个名为 choice 的变量来存储用户答案并显示它,以查看它是否正确存储了用户选择,看起来确实如此。我现在的下一个问题是,此任务的最终目标是允许用户根据需要多次投票,然后当用户指示他们已完成时,统计并显示用户所做的所有投票。我知道我需要包含一个 while 循环来考虑多次投票和退出选项。然而,我遇到的问题是如何存储所有用户选择并在最后显示它们,因为我此时只有一个名为“选择”的变量。我更新的代码部分现在代替了以前的代码。我在 NetBeans 中得到的结果如下

1:共和党2:民主3:独立您愿意投票给:32选择=2构建成功(总时间:10 秒)

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import javax.swing.JFileChooser;
// * To change this template, choose Tools | Templates
//* and open the template in the editor.


/**
*

* @作者 */ 公开课 SurveyMaker {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
JFileChooser chooser = new JFileChooser();
Scanner in = null;
List<String> myOptions = new ArrayList<String>();
if(chooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION)
{
File selectedFile = chooser.getSelectedFile();

try{
in = new Scanner(selectedFile);
int lineNumber = 1;
final int MAX_LINES = 9;

while (in.hasNextLine() && lineNumber <= MAX_LINES)
{
String line = in.nextLine();
System.out.println(lineNumber + ": " + line);
myOptions.add(line);
lineNumber++;
}
System.out.println("Would you like to vote for: " + myOptions.size());
Scanner scanchoice = new Scanner(System.in);
int choice = scanchoice.nextInt();
System.out.println("choice = "+ choice);
if (in.hasNextLine())
{
System.out.println("...");
}

}

catch(FileNotFoundException ex)
{
System.out.println("There was an error with the file. Try again.");
System.exit(1);
}
catch(IOException ex)
{
System.out.println("There was an error with the file. Try again.");
System.exit(1);
}
}
else {
System.out.println("You didn't choose a file.");
System.exit(0);
}
}
}

最佳答案

while (in.hasNextLine() && lineNumber <= MAX_LINES)
{
String line = in.nextLine();
System.out.println(lineNumber + ": " + line);
lineNumber++;
}

您需要在此处添加逻辑。您已经有了单独获取行的代码,现在您只需要创建一个适用于每个行的系统。您实质上是将文件分解为 1 行段。

正如其他答案中提到的,ArrayList 对象可用于存储对象以供以后使用。如果你想创建一个 ArrayList 并在其中存储字符串,你可以这样声明它:

List<String> myOptions = new ArrayList<String>();

您现在可以在循环中使用myOptions:

while (in.hasNextLine() && lineNumber <= MAX_LINES)
{
String line = in.nextLine();
System.out.println(lineNumber + ": " + line);
myOptions.add(line);
lineNumber++;
}

现在,每当用户进行选择时,行号都对应于数组索引 + 1。因此,如果他们想要选择选项 2,您可以使用 myOptions.get(1)。或者更一般地说 myOptions.get(selection - 1) 只需确保验证用户的选择以确保不会超出范围! (提示:使用myOptions.size())

关于java - 从文本文件用 Java 创建菜单语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20411729/

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