Here you can find the source of stringToMatriz(List
protected static boolean[][] stringToMatriz(List<String> linhas)
//package com.java2s; //License from project: Open Source License import java.util.List; public class Main { private final static String SEPARADOR = ";"; protected static boolean[][] stringToMatriz(List<String> linhas) { boolean[][] matriz = null; for (int i = 0; i < linhas.size(); i++) { String[] nos = linhas.get(i).split(SEPARADOR); if (matriz == null) { matriz = new boolean[nos.length][linhas.size()]; }/* w w w . j a v a 2 s .c o m*/ for (int j = 0; j < nos.length; j++) { matriz[j][i] = Boolean.parseBoolean(nos[j]); } } return matriz; } }