在Java中使用数组显示统计信息

时间:2012-04-12 16:55:21

标签: java arrays statistics

我正在尝试使用Java中的数组从简单的文本文件中显示统计信息。我知道我应该做什么,但我真的不知道怎么编码。所以有人可以给我看一个如何做的示例代码。

因此,假设文本文件名为gameranking.txt,其中包含以下信息(这是一个简单的txt文件,用作示例):

Game Event, 1st place, second place, third place, fourth place
World of Warcraft, John, Michael, Bill, Chris
Call of Duty, Michael, Chris, John, Bill
League of Legends, John, Chris, Bill, Michael. 

我的目标是显示统计数据,例如每个人在下表中获胜的第一名,第二名......

Placement     First place, second, third, fourth
John            2            0       1      0
Chris           0            2       0      1
etc...       

我的想法:
首先,我会阅读gameranking.txt并将其存储到“输入”。然后我可以使用while循环读取每一行并将每一行存储到一个名为“line”的字符串中,然后,我将使用数组方法“split”来拉出每个字符串并将它们存储到单独的数组中。之后,我会计算每个人赢得哪个位置,并使用printf将它们显示在一个整洁的表中。

我的第一个问题是我不知道如何为这些数据创建数组。我是否首先需要读取文件并查看每行和每列中有多少个字符串,然后相应地创建数组表?或者我可以在阅读时将每个字符串存储在数组中吗?

我现在拥有的伪代码如下。

  • 计算有多少行并将其存储在行中
  • 计算有多少列并将其存储在列
  • 创建数组
  • String [] [] gameranking = new String [row] [column]
  • 接下来阅读文本文件并将信息存储到数组中

使用:

while (input.hasNextLine) {
    String line = input.nextLine();
    while (line.hasNext()) {
        Use line.split to pull out each string
        first string = event and store it into the array
        second string = first place
        third string =......
  • 代码中的某处,我需要计算位置....

有人可以告诉我应该怎么做吗?

2 个答案:

答案 0 :(得分:2)

我不会写完整的程序,但我会尝试解决每个问题并给你一个简单的建议:

读取初始文件,您可以使用BufferedReader获取每一行并将其存储在字符串中(或者如果您愿意,可以使用LineNumberReader)

BufferedReader br = new BufferedReader(new FileReader(file));
String strLine;
while ((strLine = br.readLine()) != null)   {
......Do stuff....
}

此时,在while循环中,您将遍历字符串(因为它以逗号分隔,您可以使用它来分隔每个部分)。对于每个子字符串,您都可以 a)将其与第一,第二,第三,第四进行比较以获得放置。 b)如果不是其中任何一个,那么它可以是游戏名称或用户名

你可以通过位置或第n个子串来计算出来(即如果这是第5个子串,它可能是第一个游戏名称。因为你有4个玩家,下一个游戏名称将是第10个子串,等等) 。请注意,我忽略了“游戏事件”,因为这不是模式的一部分。您可以使用split来执行此操作或其他一些选项,而不是尝试解释我将为您提供指向我找到的教程的链接: http://pages.cs.wisc.edu/~hasti/cs302/examples/Parsing/parseString.html

至于制表结果,基本上你可以为每个跟踪他们的第一,第二,第三,奖等的玩家获得一个int数组。

int[] Bob = new int[4]; //where 0 denotes # of 1st awards, etc.
int[] Jane = new int[4]; //where 0 denotes # of 1st awards, etc.

显示表是在GUI中组织数据和使用JTable的问题: http://docs.oracle.com/javase/tutorial/uiswing/components/table.html

好吧......这是我写的,我相信有更清洁,更快捷的方式,但这应该给你一个想法:

String[] Contestants = {"Bob","Bill","Chris","John","Michael"};

int[][] contPlace=new int[Contestants.length][4];
String file = "test.txt";

public FileParsing() throws Exception {
    Arrays.fill(contPlace[0], 0);
    Arrays.fill(contPlace[1], 0);
    Arrays.fill(contPlace[2], 0);
    Arrays.fill(contPlace[3], 0);
    BufferedReader br = new BufferedReader(new FileReader(file));
    String strLine;
    while((strLine=br.readLine())!=null){
        String[] line = strLine.split(",");
        System.out.println(line[0]+"/"+line[1]+"/"+line[2]+"/"+line[3]+"/"+line[4]);
        if(line[0].equals("Game Event")){
            //line[1]==1st place;
            //line[2]==2nd place;
            //line[3]==3rd place;
        }else{//we know we are on a game line, so we can just pick the names
            for(int i=0;i<line.length;i++){
                for(int j=0;j<Contestants.length;j++){
                    if(line[i].trim().equals(Contestants[j])){
                        System.out.println("j="+j+"i="+i+Contestants[j]);
                        contPlace[j][i-1]++; //i-1 because 1st substring is the game name
                    }

                }
            }
        }
    }
    //Now how to get contestants out of the 2d array
    System.out.println("Placement  First Second Third Fourth");
    System.out.println(Contestants[0]+" "+contPlace[0][0]+" "+contPlace[0][1]+" "+contPlace[0][2]+" "+contPlace[0][3]);
    System.out.println(Contestants[1]+" "+contPlace[1][0]+" "+contPlace[1][1]+" "+contPlace[1][2]+" "+contPlace[1][3]);
    System.out.println(Contestants[2]+" "+contPlace[2][0]+" "+contPlace[2][1]+" "+contPlace[2][2]+" "+contPlace[2][3]);
    System.out.println(Contestants[3]+" "+contPlace[3][0]+" "+contPlace[3][1]+" "+contPlace[3][2]+" "+contPlace[3][3]);
    System.out.println(Contestants[4]+" "+contPlace[4][0]+" "+contPlace[4][1]+" "+contPlace[4][2]+" "+contPlace[4][3]);

}

如果您需要填充参赛者阵列或跟踪比赛,您必须插入适当的代码。另请注意,如果您想要执行除显示之外的任何操作,使用此二维数组方法可能不是最佳方法。你应该能够获取我的代码,添加一个main,然后看它运行。

答案 1 :(得分:1)

由于它是文本文件,因此请使用Scanner类。 它可以自定义,以便您可以逐行,逐字或自定义分隔符读取内容。

readfromfile方法一次读取一行纯文本文件。

 public static void readfromfile(String fileName) {
  try {
   Scanner scanner = new Scanner(new File(fileName));
   scanner.useDelimiter(",");
   System.out.println(scanner.next()); //instead of printing, take each word and store them in string array
   scanner.close();
  } catch (FileNotFoundException e) {
   e.printStackTrace();
  }
 }

这将帮助您入门。