Così?
codice:
for (int i=0; i<matrice.length; i++) {
   for (int j=0; i<matrice[i].length; i++) {
      System.out.print(matrice[i][j] + "\t");
   }
   System.out.println();
}
Ciao.