我正在尝试制作一个密码,在其中键入一个单词,然后根据用户选择的内容进行移位,但我收到此错误:
线程“main”中的异常java.lang.StringIndexOutOfBoundsException:字符串索引超出范围:2
在java.lang.String.charAt(未知来源)
在cipher.mycipher.main(mycipher.java:24)
我不确定为什么会收到此错误?
这是我的代码:
public class mycipher {
public static void main(String[] args) {
int[] storagelocation = new int[25];
char[] letter1 = new char[25];
char[] init = new char[25];
Scanner consolereader = new Scanner(System.in);
char[] letters = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
System.out.println("what word would you like to cipher?");
String original = consolereader.nextLine();
System.out.println("how much would you like to shift it by");
int shift = consolereader.nextInt();
for (int i = 0; i < 25; i++) {
storagelocation[i] = i;
letter1[i] = letters[i];
if (letter1[i] == (original.charAt(i))) {
letter1[i] = init[i];
}
}
System.out.println(Arrays.toString(init));
}
}
答案 0 :(得分:0)
您必须添加
之类的条件 for (int i= 0; i < original.length(); i++) {
storagelocation[i] = i;
letter1[i] = letters[i];
if (letter1[i] == original.charAt(i)) {
letter1[i] = init[i];
}
}
不要超越原始的其他长度,for循环将迭代到25。
答案 1 :(得分:0)
执行的迭代应该根据原件的长度而不是25进行。
循环中的逻辑看起来令人困惑。如果你清楚地解释清楚,我可以尝试给你工作代码。