import javax.swing.*;
public class Test {
public static void main(String args[]) {
String message =
"<html><table>" +
"<tr>" +
"<td>uno</td>" +
"<td>123</td>" +
"</tr>" +
"<tr>" +
"<td>dos</td>" +
"<td>456</td>" +
"</tr>" +
"</table></html>";
Object[] options = { "OK", "CANCEL" };
JOptionPane.showOptionDialog(null, message, "Warning",
JOptionPane.DEFAULT_OPTION, JOptionPane.WARNING_MESSAGE, null,
options, options[0]);
}
}