有人可以帮助我解决以下错误。线程主 java.lang.arrayindexoutofboundsexception 中的异常:3 在 RowTrans.encrypt(Rowtrans.java:33) 在 RowTrans.main(Rowtrans.java:7)
在我的程序中,我想得到一个文本。将其放入一个 5 列的矩阵中,并根据文本的长度确定行。然后我想改变列和行的位置,以便行获得列位置,列获得行。当一行不包含 5 个值时,我想在空格中添加字符 Z。任何人都可以帮助我解决这个错误吗?
这是我的代码
import java.util.Scanner;
public class ColTrans {
public static void main(String[] args)
{
String ori = "This is my horse";
String enc = encrypt(ori);
System.out.println(enc);
// String dec = decrypt(enc);
// System.out.println(dec);
}
static String encrypt(String text)
{
String result = "";
text = text.toUpperCase();
int length = text.length();
int rows = length / 5;
char[][] b = new char[rows][5];
char[][] c = new char[5][rows];
char[] d = new char[length];
if ((length % 5) != 0)
rows = rows + 1;
int k = 0;
for (int i = 0; i < rows; i++)
for (int j = 0; j < 5; j++)
{
if (k > length)
b[i][j] = 'Z';
else
{
d[k] = text.charAt(k);
b[i][j] = d[k];
}
k++;
}
for (int i = 0; i < 5; i++)
for (int j = 0; j < rows; j++)
{
c[i][j] = b[j][i];
result = result + c[i][j];
}
return result;
}
}