简体   繁体   English

JAVA-字符串索引超出范围,我不知道为什么

[英]JAVA - String index out of range, I can't figure out why

So I'm making a program that decodes a coded message, it compiles but when I run it I get a java.lang.StringIndexOutOfBoundsException: String index out of range: 1 error and I can't figure out where this is coming from. 因此,我正在编写一个对编码消息进行解码的程序,它可以编译,但是当我运行它时,我得到一个java.lang.StringIndexOutOfBoundsException:字符串索引超出范围:1错误,我无法弄清楚它的来源。

Here's the code: 这是代码:

    import java.util.Scanner;

public class ReverseCodeProgram {
  public static int i;

  public static String decodeLetter(String s){
      String a = "";
      if ((s.charAt(0) == '.'))
      a = "E";
      if ((s.charAt(0) == '-'))
      a = "T";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '-'))
      a = "M";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '.'))
      a = "N";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '.'))
      a = "I";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '-'))
      a = "A";
      if ((s.charAt(0) == ' ') && (s.charAt(1) == ' '))
      a = " ";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '-') && (s.charAt(2) == '.'))
      a = "R";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '.') && (s.charAt(2) == '.'))
      a = "S";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '.') && (s.charAt(2) == '-'))
      a = "U";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '.') && (s.charAt(2) == '.'))
      a = "D"; 
      if ((s.charAt(0) == '-') && (s.charAt(1) == '-') && (s.charAt(2) == '.'))
      a = "G";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '.') && (s.charAt(2) == '-'))
      a = "K";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '.') && (s.charAt(2) == '-'))
      a = "O";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '-') && (s.charAt(2) == '-'))
      a = "W";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '.') && (s.charAt(2) == '.') && (s.charAt(3) == '.'))
      a = "B";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '.') && (s.charAt(2) == '-') && (s.charAt(3) == '.'))
      a = "C";    
      if ((s.charAt(0) == '.') && (s.charAt(1) == '.') && (s.charAt(2) == '-') && (s.charAt(3) == '.'))
      a = "F";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '.') && (s.charAt(2) == '.') && (s.charAt(3) == '.'))
      a = "H";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '-') && (s.charAt(2) == '-') && (s.charAt(3) == '-'))
      a = "J";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '-') && (s.charAt(2) == '.') && (s.charAt(3) == '.'))
      a = "L";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '-') && (s.charAt(2) == '-') && (s.charAt(3) == '.'))
      a = "P";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '-') && (s.charAt(2) == '.') && (s.charAt(3) == '-'))
      a = "Q";
      if ((s.charAt(0) == '.') && (s.charAt(1) == '.') && (s.charAt(2) == '.') && (s.charAt(3) == '-'))
      a = "V";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '.') && (s.charAt(2) == '.') && (s.charAt(3) == '-'))
      a = "X";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '.') && (s.charAt(2) == '-') && (s.charAt(3) == '-'))
      a = "Y";
      if ((s.charAt(0) == '-') && (s.charAt(1) == '-') && (s.charAt(2) == '.') && (s.charAt(3) == '.'))
      a = "Z";
      s = a;
      return s; 
  }
  public static void main(String[] args) {
    System.out.println("Please enter the sentence in Morse code");
    String code = new Scanner(System.in).nextLine();
    String decodedCharacter = "", character = "", decodedCode = "";
    for (i = 0; i <  code.length(); i++){
      if (code.charAt(i) == ' '){
        for (int j = i - 4; j < i; j++){        
        character += code.charAt(j); 
        decodedCharacter = "" + decodeLetter(character);
      }
      decodedCode += decodedCharacter;
     }

    }
    System.out.println(decodedCode);    
  }
}
for (int j = i - 4; j < i; j++)

The above line is causing your error. 上面的行导致您的错误。 It's because i is less than 4 when it reaches that line. 这是因为到达该行时小于4。 Try the following instead: 请尝试以下操作:

public static void main(String[] args) {
    System.out.println("Please enter the sentence in Morse code");
    String code[] = new Scanner(System.in).nextLine().split(" ");
    String decodedCode = "";
    for(String character : code){
        decodedCode += decodeLetter(character);
    }

    System.out.println(decodedCode);
}

It splits the input into a string array by "character" and then iterates over it. 它通过“字符”将输入拆分为字符串数组,然后对其进行迭代。

For your input, the exception happens at if ((s.charAt(0) == '.') && (s.charAt(1) == '.')) where s is just . 对于您的输入,异常发生在if ((s.charAt(0) == '.') && (s.charAt(1) == '.'))处,其中s是just . and you are trying to access second character of it. 您正在尝试访问它的第二个字符。

You should have a change in your loop to read the characters: 您应该在循环中进行更改以读取字符:

        for (i = 0; i < code.length(); i++) {
            if (code.charAt(i) == ' ') {
                character = "";   //Clear the value before read
                for (int j = i - 4; j < i; j++) {
                    character += code.charAt(j);
                }
                decodedCharacter = decodeLetter(character); //This should be outside the for(int j = 1-4 loop for you to read the 4 chars and then pass to decode.
                decodedCode += decodedCharacter;
            }
        }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM