Jan
31
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class HtmlDemo1 extends JPanel
implements ActionListener {
JLabel theLabel;
JTextArea htmlTextArea;
public HtmlDemo1() {
setLayout(null);
this.setSize(400,400);
String initialText = “<html>\n” +
“Color and font test:\n” +
“<ul>\n” +
“<li><font color=red>red</font>\n” +
“<li><font color=blue>blue</font>\n” +
“<li><font color=green>green</font>\n” +
“<li><font size=-2>small</font>\n” +
“<li><font size=+2>large</font>\n” +
“<li><i>italic</i>\n” +
“<li><b>bold</b>\n” +
“</ul>\n”;
htmlTextArea = new JTextArea(10, 20);
htmlTextArea.setText(initialText);
theLabel=new JLabel();
theLabel.setText(initialText);
theLabel.setBounds(20,20,200,200);
htmlTextArea.setBounds(250,20,200,200);
add(theLabel);
add(htmlTextArea);
JButton b=new JButton(“Change”);
b.setBounds(20,300,100,30);
add(b);
b.addActionListener(this);
}
public void actionPerformed(ActionEvent e) {
theLabel.setText(htmlTextArea.getText());
}
public static void main(String[] args) {
HtmlDemo1 hd=new HtmlDemo1();
Frame f=new Frame();
f.add(hd);
f.setSize(400,400);
f.setVisible(true);
}
}
February 9th, 2013 at 9:34 PM
sir,
also include the step: “How to run particular program”.