0
我有這段代碼,它運行得很好。問題是,當我嘗試使用showMessageDialog顯示它時,它顯示了一切雜亂的方式。有關如何正確顯示它的任何建議?謝謝。用JOptionPane顯示容器陣列
String tablaColeccion;
tablaColeccion ="";
for (int i = 0; i < informeMatrices.getVector().length; i++){
if (informeMatrices.getVector()[i] != null){
tablaColeccion += informeMatrices.getVector()[i] + " ";
}
}
tablaColeccion += "\n";
for (int i = 0; i < informeMatrices.getMatriz().length; i++) {
for(int u = 0; u < informeMatrices.getMatriz().length; u++){
if (informeMatrices.getMatriz()[i][u] != null){
tablaColeccion += informeMatrices.getMatriz()[i][u] + " ";
}
}
tablaColeccion += "\n";
}
tablaColeccion += "\n\n";
JOptionPane.showMessageDialog(null,tablaColeccion,"Coleccion Completa", JOptionPane.INFORMATION_MESSAGE);
我想將其顯示爲分隔列。任何幫助都是極好的。
*「關於如何正確顯示它的任何建議?」*在選項窗格中顯示一個列表(一維數組)或表格(二維數組)。 – 2014-10-07 05:12:36