{
JFrame frame = new JFrame();
JDialog dialog = new JDialog(frame, "hello");
Container contentPane = dialog.getContentPane();
..... ????? //display image here
dialog.setSize(new Dimension(300, 150));
dialog.setLocationRelativeTo(frame);
dialog.setVisible(true);
}
Thanks
...
ImageIcon i = new ImageIcon(...);
JLabel l = new JLabel(i);
contentPane().add(l);
...