Skip to content

Instantly share code, notes, and snippets.

@necronet
Created June 27, 2009 22:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save necronet/137144 to your computer and use it in GitHub Desktop.
Save necronet/137144 to your computer and use it in GitHub Desktop.
for(int i=0;i< table.getColumnCount();i++){
for(int j=0;j<table.getRowCount();j++){
Object objeto=table.getValueAt(j,i);
s.addCell(new Label(j, i, String.valueOf(objeto)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment