public class Tablero{ Html archivo; final String arribaYBase = "| - - - | - - - | - - - |" ; public Tablero(){ this.archivo = new Html(); } public void imprimirTableroVacio(){ System.out.println(" 1 2 3 "); for(int j = 0;j<3;j++){ System.out.println(" " + arribaYBase); System.out.print(j+1); System.out.println("| | | |"); System.out.println(" " + arribaYBase); } } public void imprimirTablero(char[][] temporal){ for(int i = 0;i<3;i++){ System.out.println(arribaYBase); System.out.println("| " + temporal[i][0] + " "+ "| " + temporal[i][1] + " " + "| " + temporal[i][2] + " |"); } System.out.println(arribaYBase); } public void imprimirTableroArchivo(char[][] temporal){ String impTabla[][] = new String[3][3]; for(int i = 0;i<3;i++){ this.archivo.escribirLineaJuego(arribaYBase); for(int j = 0;j < 3;j++){ if(temporal[i][j] == ' '){ impTabla[i][j] = " "; }else{ impTabla[i][j] = "" + temporal[i][j]; } } this.archivo.escribirLineaJuego("|   " + impTabla[i][0] + "   "+ "|   " + impTabla[i][1] + "   " + "|   " + impTabla[i][2] + "   |"); } this.archivo.escribirLineaJuego(arribaYBase); } }