我正在尝试执行此操作:如果用户选择此选项,程序将在屏幕上打印读取的数据。
示例输出:
日期:2018年1月10日输出:236.9 日期:2018年1月11日产量:267.6 日期:2018年1月12日输出:278.1
编写一个称为PrintData的方法来执行此任务。选择适当的参数和返回类型。
完成打印后,将再次显示主菜单。
我已经在我的方法Upload Data中将数据读入到数组列表中,现在我想弄清楚如何制作一个单独的方法来打印UploadData的Arraylist。
我认为我现在拥有的东西行不通。
: ` public static void main(String[] args) throws IOException {
Scanner keyboard = new Scanner(System.in);
//calling menu
showMenu();
int userChoice=keyboard.nextInt();
while (userChoice == 1)
{
UploadData();
showMenu();
int userchoice=keyboard.nextInt();
}
while(userChoice ==2)
{
PrintData();
showMenu();
int userchoice=keyboard.nextInt();
}
}
public static void showMenu()
{
//creating menu
System.out.println("Welcome to the Power Plant Analyzer program. Please choose from the following options:\n"
+ " 1. Upload Data\n 2. View Data \n 3. Download Statistics \n 4. Print Month \n 5. Exit the program");
}
public static String[] UploadData() throws IOException
{
Scanner keyboard = new Scanner(System.in);
//Asking for file
System.out.println("What is the name of the file that contains the data?");
String inputFileName=keyboard.nextLine();
//creating file
File f = new File(inputFileName);
Scanner inputFile = new Scanner(f);
//creating arraylist
ArrayList<Entry> MonthList = new ArrayList<>();
//reading the file
while(inputFile.hasNext())
{
//read a line
String m = inputFile.next();
String d = inputFile.next();
String y = inputFile.next();
float p = inputFile.nextFloat();
//create Entry with info read in
Entry i = new Entry(m,d,y,p);
//add it to the arraylist
MonthList.add(i);
}
//print Entry's into arraylist
//for(int i =0; i <MonthList.size(); i++)
//MonthList.get(i).print();
return null;
}
public static void PrintData(ArrayList<Entry> MonthList)
{
for(int i =0; i <MonthList.size(); i++)
MonthList.get(i).print();
//ArrayList<Entry> MonthList = new ArrayList<>(Arrays.asList());
//int pos = Collections.binarySearch(MonthList);
}
}`
//declaring variables
private String month;
private String day;
private String year;
private float powerOutput;
//Constructors
public Entry(){}
public Entry (String m, String d, String y, float p)
{
month = m;
day =d;
year =y;
powerOutput=p;
}
//creating print to call ArrayList in main
public void print()
{
System.out.println("Month: " + month + " Day: " + day + " Year: " + year + " Power Output: " + powerOutput);
}
}
答案 0 :(得分:0)
在您的uploadData方法中,使它返回一个List<Entry>
(而不是您甚至没有返回的String []),因此请代替return null;
并执行return MonthList;
并更改其签名到:
public static List<Entry> UploadData() throws IOException {
然后在您的主要方法代码中添加此声明,并将其与您的UploadData和PrintData方法相对应地使用:
public static void main(String[] args) throws IOException {
ArrayList<Entry> MonthList = null;
...
while (userChoice == 1)
{
MonthList = UploadData();
showMenu();
int userchoice=keyboard.nextInt();
}
while(userChoice ==2)
{
PrintData(MonthList);
showMenu();
int userchoice=keyboard.nextInt();
}
答案 1 :(得分:0)
这看起来像是一个课堂练习,因此我不会为您编写解决方案,但我会尽力为您提供一些提示,以指导您正确的方向
1)您不能直接访问在方法UploadData()
中创建的数组列表,因为它是局部变量。如果您的描述要求您“选择合适的参数并返回类型”,则应从UploadData()
返回“ MonthList”,而不是null。
[注意:您可能必须将MonthList结果添加到主类的另一个List中,因为您在while循环中调用了此方法]
2)您的方法PrintData()
以ArrayList<Entry> MonthList
作为参数,但是在您的主方法中,您试图在不传递任何参数的情况下调用它。在传递给调用的主方法中有一个ArrayList
希望这会有所帮助