import javax.swing.*;
import java.awt.*;
public class MyTest extends JFrame {
JPanel jp=new JPanel();
public MyTest() {
this.add(jp);
jp.setBorder(BorderFactory.createTitledBorder(BorderFactory.createLineBorder(Color.red),"基本信息"));
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(300,200);
this.setLocation(150,80);
this.setVisible(true);
}
public static void main(String[] args) {
new MyTest();
}
}