Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Codigo extraido da [internet]
import javax.swing.;import java.awt.;public class URLLabelTeste extends JFrame{ public URLLabelTeste(){ super("Uso de HTML em um objeto JLabel"); Container tela = getContentPane(); FlowLayout layout = new FlowLayout(FlowLayout.LEFT); tela.setLayout(layout); URLLabel rotulo = new URLLabel("Visite nosso site", "http://www.java.sun.com"); tela.add(rotulo); setSize(300, 100); setVisible(true); } public static void main(String args[]){ URLLabelTeste app = new URLLabelTeste(); app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); }}At+ http://forum.imasters.com.br/public/style_emoticons/default/joia.gif
Carregando comentários...