import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
/**
* pTitle: 在swing中使用html语言/p
* pDescription: 这里演示使用html语言在swing面板上构造显示信息/p
* pCopyright: Copyright (c) 2003/p
* pFilename: HtmlDemo.java/p
* @version 1.0
*/
public class HtmlDemo extends JPanel
implements ActionListener {
JLabel theLabel;
JTextArea htmlTextArea;
/**
*br方法说明:构造器,描述窗体中的成员
*br输入参数:
*br返回类型:
*/
public HtmlDemo() {
setLayout(new BoxLayout(this, BoxLayout.LINE_AXIS));
Strin...[ 查看全文 ]