您好我试图在JOptionPane中将图像作为项目点类型放置。我在JOptionPane中显示的内容放在一个对象数组中。但它只是没有拍摄图像。它显示了我的文件名... 有什么想法吗?
public void popups(){
ImageIcon bullet = new ImageIcon("imgs/bullet.png");
Object[] instr = {+bullet+ "text "};
JOptionPane.showMessageDialog(null, instr, "Instrucciones", 1);
}
编辑:
StringBuilder html = new StringBuilder();
html.append("<html><ul> list-style-image: url ('imgs/bullet.png')</ul>"
+ "<ul>"
+ "<li>TEXT"
+ "<li>TEXT"
+ "</ul></html>");
JOptionPane.showMessageDialog(null, html, "Instrucciones", 1);