如何让java applet自动全屏? (日食)

时间:2018-05-16 00:42:58

标签: java eclipse applet

只是想知道如何在运行它时让java applet成为全屏。我不想使用setSize();命令手动执行此操作。我试图得到它所以无论尺寸如何,它都会在任何显示器上全屏显示。如果在日食中这是可能的,那只是好奇,如果是这样,我将如何去做呢。

1 个答案:

答案 0 :(得分:0)

  

我的意思是最大化,使用Eclipse

在Windows上

然后只需使用JFrame#setExtendedState并将其传递给JFame.MAXIMIZED_BOTH

作为一个例子......

import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class Test {

    public static void main(String[] args) {
        new Test();
    }

    public Test() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new JLabel("I'm a happy bunny"));
                // The following two lines just set up the
                // "default" size of the frame
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
                frame.setVisible(true);
            }
        });
    }

}