得到java.lang.ArrayIndexOutOfBoundsException,找不到一个相同的例子

时间:2015-10-20 04:51:21

标签: java arrays for-loop indexoutofboundsexception

我正在为我的AP计算机科学课写一个“推文检查器”代码。代码应该检查推文的长度是否在140个字符的限制范围内,如果是,则打印主题标签的数量,@和使用的链接。我使用.split方法将所有字符放入一个数组,然后我使用for循环访问数组以查找特定字符。

我一直遇到java.lang.ArrayIndexOutOfBoundsException,我知道这意味着我试图访问我的字符串中不存在的元素,例如46个字符的数组的元素46,但我不知道究竟是什么问题在这儿。我上次因为“看起来不够努力”而被强迫,但我只搜索了这个主题超过2个小时,而我只是一名高中生。

我感谢所有的帮助。

import java.util.Scanner;
import java.lang.Math; 

class Main{
    public static void main(String[] args)
     {
      Scanner scan = new Scanner (System.in);
      System.out.println("Please enter a tweet:");
      String tweet = scan.nextLine();
      int length = tweet.length ();
      String[] tweetArray = tweet.split ("");
      int c = 0;
      int d = 0;
      int e = 0;
      int i = 0;
      if (length > 140)
        System.out.println("Excess Characters: " + (length - 140));
      else
      {
        System.out.println("Length Correct");
        for (i = 0; i < length; i++)
        {
          if (tweetArray[i].equals("#"))
          {
            if(!tweetArray[i+1].equals(" "))
            {
              c++;
            }
          }
        }
        System.out.println("Number of Hastags: " + c);
        for (i = 0; i < length; i++)
        {
          if (tweetArray[i].equals("@"))
          {
            if(!tweetArray[i+1].equals(" "))
            {
              d++;
            }
          }
        }
          System.out.println("Number of Attributions: " + d);
          for (i = 0; i < length; i++)
          {
            if((tweetArray[i].equals("h")) || (tweetArray[i].equals("H")))
            {
              if(tweetArray[i+1].equals("t") || tweetArray[i+1].equals("T"))
              {
                if(tweetArray[i+2].equals("t") || tweetArray[i+2].equals("T"))
                {
                  if(tweetArray[i+3].equals("p") || tweetArray[i+3].equals("P"))
                  {
                    if(tweetArray[i+4].equals(":"))
                    {
                      if(tweetArray[i+5].equals("/"))
                      {
                        if(tweetArray[i+6].equals("/"))
                        {
                          if(!tweetArray[i+7].equals(" "))
                          {
                            e++;
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        System.out.println("Number of Links: " + e);
      }




}
}

1 个答案:

答案 0 :(得分:1)

for循环中,i正确地从0迭代到最大长度。但是,您有以下代码:

 tweetArray[i+1]
 ...
 tweetArray[i+7]

一旦i达到(或接近)其最大值,将失败。也就是说,您正在引用数组的末尾。

通常,如果您需要检查 next 字符的某些内容,则需要先检查它是否存在(因为您只知道当前字符存在)。

您可能希望查看整个方法。似乎没有必要将字符串拆分为字符。您可以改为使用基于字符串的函数来计算@个字符的数量或检查是否存在字符串(例如http://)。查看the API