尝试一切,只是不露面:

package me.ultimate.ST;

import java.awt.Color;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingUtilities;

public class ST extends JFrame {

    private static final long serialVersionUID = 1L;

    public ST() {
        setSize(500, 600);
        setLocationRelativeTo(null);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setUndecorated(true);
        getContentPane().setBackground(Color.BLACK);
        JLabel label = new JLabel("Test");
        label.setText("Some Test!");
    }

    public static void main(String[] args) {

        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                ST ex = new ST();
                ex.setVisible(true);
            }
        });
    }
}


然后,我得到一个黑匣子。

最佳答案

您需要将标签添加到框架:

label.setText("Some Test!");
add(label);


我建议您阅读Swing tutorial的基础知识。也许How to Use Labels部分是一个不错的起点。本教程还将向您展示遵循Swing指南设计班级的更好方法。

关于java - Java Swing-文字和按钮未显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18435963/

10-13 09:12