线程主ArrayIndexOutOfBoundsException中的异常

时间:2013-05-16 08:54:39

标签: java indexoutofboundsexception

有人可以帮我解决以下错误。线程主java.lang.arrayindexoutofboundsexception中的异常:RowTrans.encrypt中的3(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;

   }
}

4 个答案:

答案 0 :(得分:1)

原因如下:

一旦定义了数组,就会将行变量递增1。

在第char [][] b =new char[rows][5];

之前移动以下行
if ((length % 5) != 0)

      rows = rows + 1;

答案 1 :(得分:0)

您的代码中有2个问题。首先在矩阵实例化之前移动mod部分:

  if ((length % 5) != 0)
     rows = rows + 1;

   char [][] b =new char[rows][5];
   [...]

然后将if ( k > length )更改为if ( k >= length )

答案 2 :(得分:0)

只需更改您的代码如下:

if ((length % 5) != 0)
   rows = rows + 1;
char[][] b = new char[rows][5];
char[][] c = new char[5][rows];
char[] d = new char[length];

答案 3 :(得分:0)

根据你的描述:

text = text.toUpperCase();
    char[] b = text.toCharArray();
    char[][] c = new char[b.length][5];

    int bLen = 0;
    for (int i = 0; i < c.length; i++) {
        for (int j = 0; j < 5; j++) {
            if(bLen < b.length)
                c[i][j] = b[bLen++];
            else
                c[i][j] = 'Z';

        }
    }

 //change the column and row position 
 char[][]d = new char[c[0].length][c.length];

    for (int i = 0; i < d.length; i++) {
        for (int j = 0; j < d[0].length; j++) {
            d[i][j] = c[j][i];

        }
    }

输出:TI EZZZZZZZZZZZZHSHZZZZZZZZZZZZZI OZZZZZZZZZZZZZSMRZZZZZZZZZZZZZ YSZZZZZZZZZZZZZ