JLabel中支持HTML代码,但是不支持超连接,有什么办法让它支持超连接吗?
public void init()
{
JLabel p = new JLabel("A label");
p.setText("<html><a href='www.163.com'>163</a><INPUT TYPE='submit'></html>");
this.add(p,null);
}