public class ChooseMyFiles {
protected String[][] data; /*用于存放从文件中读出的数据*/
private int row; //protected;
private int col;
private String[] colName; /*用于存放列名称*/
public int getRow(){
return this.row;
}
public String[] getColName(){
return colName;
}
public int getCol(){
return this.col;
}
public String[][] data(){
return this.data;