从Array到int的Java ArrayindexOutofBoundsException

时间:2016-09-21 18:05:03

标签: java arrays char int dice

我很难解决这个问题,我尝试了不同的方法和解决方法,但我想我甚至不敢触及代码,因为我每次都能得到错误的数量!

问题是我试图简单地从一个char数组中读取,该数组当前在每个元素中有1000个随机生成的数字。 我需要显示这个字符串/字符值的统计数据,范围在1-6之间并将其存储到统计数组中,然后打印出来。我在哪里做错了?

下面是我的代码片段:

public static int[] showGame(String tempResult) throws IOException{
    int statistics [] = new int [6];
    char [] resultat = new char[1000];
    String tempStr;
    try{

    BufferedReader indata = new BufferedReader(new FileReader("DiceGame.txt"));
    tempStr = indata.toString();           
    char result [] = tempStr.toCharArray(); 

        for (int i = 0; i < 1000; i++) {       
                      resultat[i] = tempStr.charAt(i);
                switch (result[i]) {
                    case '1':
                        statistics[0]++;
                        break;
                    case '2':
                        statistics[1]++;
                        break;
                    case '3':
                        statistics[2]++;
                        break;
                    case '4':
                        statistics[3]++;
                        break;
                    case '5':
                        statistics[4]++;
                        break;
                    case '6':
                        statistics[5]++ ;
                        break;
                }         
             }
        } catch (IOException ex) {
            JOptionPane.showMessageDialog(null, "An error occured: " + ex);
        }catch (NumberFormatException e){
        JOptionPane.showMessageDialog(null,"Error: " + e);
        }
        //Arrays.toString(statistics);
        return  statistics;      
        }

编辑:或者可能是因为我没有正确地从主叫它?!

public static void main(String[] args) throws IOException {
    int []Statistik = new int[6];
    String tossValue = JOptionPane.showInputDialog("set value for amount f toss"); 
    DiceWithArray.Game(tossValue);    //Kasta in värdet in i klass metoden
    String tempToss = DiceWithArray.Game(tossValue); 
    Statistik = DiceWithArray.showGame(tempToss); 
 System.out.println("Resultatet : " + Arrays.toString(Statistik));

1 个答案:

答案 0 :(得分:0)

你这样做:

for (int i = 0; i < 1000; i++) {       
  resultat[i] = tempStr.charAt(i);

并且,您无法确定tempStr必须是1000个字符或更长。做点什么:

for (int i = 0; i < 1000; i++) {    
  if(tempStr.length() <= i)
    break;
  resultat[i] = tempStr.charAt(i);

你不能在BufferedReader上使用toString,用nextLine方法读取整个文件,然后用它做。