Skip to content

Instantly share code, notes, and snippets.

@camilopayan
Created October 16, 2011 23:42
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 camilopayan/1291605 to your computer and use it in GitHub Desktop.
Save camilopayan/1291605 to your computer and use it in GitHub Desktop.
html string.format
String o = "<html><table>";
for(int i=0; i<4; i++){
o += String.format("
<tr>
<td>%d</td>
<td>%d</td>
<td>%s</td>
</tr>", i, guess[i], histogram[i]);
}
o+="</table></html>";
JOptionPane.showMessageDialog(null, o);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment