如何在textArea中动态添加Label?

时间:2013-07-14 06:35:15

标签: java swing jtextarea

我想将此Label添加到TextArea但是当我运行它时不显示任何信息。表示标签信息。 我想要那些信息。数据包包含在Label(jl)中,Label将逐个添加到TextArea1中。

我可以追加文字,但我不希望我只想在TextArea中添加标签

if (captor == null) {
    // open device in promesous mode          
    captor = jpcap.JpcapCaptor.openDevice(pnic, 65535, true, 1000);
    System.out.println("Now device is openned");
}
System.out.println(captor);
moreInfo(nic[PacketSniffer.choice]);

while (main.statu) {
    p = captor.getPacket();
    if (p != null) { 
        javax.swing.JLabel jl = new javax.swing.JLabel(count + ":" + p + "\n");
        jTextArea1.add(jl);
        count++;
    }
}
  • captor:打开用于数据包捕获的接口的对象
  • p:到达或离开系统的数据包信息

0 个答案:

没有答案