如何创建带标题的JFrame

时间:2013-10-22 14:55:37

标签: java swing jframe

如何使用Java Eclipse创建带标题的JFrame?我试过用了     包框架;

import javax.swing.JFrame;

public class Frame {

public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setText("abc");
}

4 个答案:

答案 0 :(得分:6)

也许使用setTitle方法

frame.setTitle("abc");

或者

JFrame frame = new JFrame("abc");

答案 1 :(得分:4)

这是创建标题为JFrame的方法:

JFrame frame = new JFrame("Title");

这是创建JFrame并设置其标题的方法:

JFrame frame = new JFrame();
frame.setTitle("Title");

这是Google的first result 创建带标题的jframe

enter image description here

答案 2 :(得分:3)

你可以使用.setTitle();设置标题。

答案 3 :(得分:1)

import javax.swing.*;
import javax.awt.*;

public class MyFrame {

    public static void main(String[] args) {
        JFrame frame = new JFrame();
        frame.setTitle("abc");
        frame.setSize(100,100);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }
}