我编写了一个程序,需要同时在Mac和Windows上运行。就GUI而言,在Windows上看起来不错,但在Mac上,JFrame太小。
我使用了GridBag布局,但没有使用绝对值,这在类似于此问题的答案中已提出。
我尝试使用pack(),但不适用于此GUI。它甚至不调整框架的大小以适合菜单栏。我正在使用setSize(X,Y),但是有没有办法检查用户是否在Mac上,然后相应地更改大小?
我也尝试过使用setMinimumSize()然后使用pack(),但pack仍然无法执行任何操作。

这是我的帧代码位;以防万一由于pack()无法正常工作而导致任何错误。

try {
        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } catch (Exception e) { }

    try {
        timeCodeMask = new MaskFormatter(" ## : ## : ## : ## ");
    } catch(ParseException e) {
        errorMessage("Warning!", "Formatted text field hasn't worked, text fields will not be formatted.");
    }

    try {
        activePanel = new JPanelSwapper("src/bg.png");
    } catch(IOException e) {
        errorMessage("Warning!", "Background image has not loaded, continuing without one.");
    }

    FPS = 24;

    calculatorPanel = calculatorPanel();
    converterPanel = converterPanel();

    activePanel.setPanel(calculatorPanel());
    previousTimes = new TimeStore();
    resultTimes = new TimeStore();
    previousConversions = new TimeStore();

    frame = new JFrame("TimeCode Calculator & Converter");
    ImageIcon frameIcon = new ImageIcon("src/frame icon.png");
    frame.setIconImage(frameIcon.getImage());
    frame.setExtendedState(JFrame.NORMAL);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        //frame.setSize(WIDTH, HEIGHT);
        //frame.pack();
        frame.setMinimumSize(new Dimension(WIDTH, HEIGHT));
        frame.pack();
        frame.setResizable(false);

    frame.setJMenuBar(menuBar());
    frame.getContentPane().add(activePanel);
    frame.setBackground(Color.WHITE);
    frame.setVisible(true);

    screen = Toolkit.getDefaultToolkit().getScreenSize();
    frame.setLocation((screen.width - WIDTH) / 2, (screen.height - HEIGHT) / 2);

提前致谢!

最佳答案

您可以找出哪个操作系统与系统属性一起使用。

例如:

System.getProperty("os.name"); //returns name of os as string
System.getProperty("os.version"); //returns version of os as string
System.getProperty("os.arch"); //returns architecture of os as string

根据条件进行检查:
public String getOS() {
    String os = System.getProperty("os.name").toLowerCase();

    if(os.indexOf("mac") >= 0){
       return "MAC";
    }
    else if(os.indexOf("win") >= 0){
       return "WIN";
    }
    else if(os.indexOf("nix") >= 0 || os.indexOf("nux") >= 0){
       return "LINUX/UNIX";
    }
    else if(os.indexOf("sunos") >= 0){
       return "SOLARIS";
    }

关于java - 如何检查您是在Mac还是Windows上以Java调整GUI的大小?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10768525/

10-09 09:35