Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

จะสร้าง JLabel เพื่อเก็บข้อความหลายบรรทัดโดยใช้ HTML ใน Java ได้อย่างไร


หากต้องการเก็บข้อความหลายบรรทัด ให้ตั้งค่า HTML ภายใต้ JLabel -

JLabel = new JLabel("<html><strong>" + "Line1<br>Line2</strong></html>",JLabel.LEFT);

ด้านบนจะสร้างข้อความหลายบรรทัดใน JLabel -

Line1
Line2

ต่อไปนี้คือตัวอย่างการสร้าง JLabel เพื่อเก็บข้อความหลายบรรทัด -

ตัวอย่าง

import java.awt.Font;
import javax.swing.*;
public class SwingDemo {
   public static void main(String args[]) {
      JFrame frame = new JFrame("Label Example");
      JLabel label;
      label = new JLabel("" + "Line1
      Line2",JLabel.LEFT);
      label.setBounds(100, 100, 100, 30);
      label.setFont(new Font("Verdana", Font.PLAIN, 13));
      frame.add(label);
      frame.setSize(500,300);
      frame.setLayout(null);
      frame.setVisible(true);
   }
}

ผลลัพธ์

จะสร้าง JLabel เพื่อเก็บข้อความหลายบรรทัดโดยใช้ HTML ใน Java ได้อย่างไร