gpt4 book ai didi

java - 在 Windows 7 平板电脑中执行时,我的 GUI 看起来很奇怪

转载 作者:行者123 更新时间:2023-11-30 09:32:40 25 4
gpt4 key购买 nike

最近我用JAVA/Swing写了一对带有简单GUI的应用程序:

  • 一个JScrollPane
  • 在第一个应用程序中,JScrollPane 中有一个 JTextArea,在第二个应用程序中有一个 JTable。

它们看起来不错,工作也不错。直到我在 Windows 7 平板电脑 (HP Slate) 上执行。它们看起来都是空的,中间有一个小符号。这张图片显示了第一个应用程序(JTextArea 应用程序)如何查看平板电脑:

enter image description here

这里有什么问题,我该如何解决?

我正在展示代码,但由于在使用计算机时看起来不错,我想这不是问题所在:

import java.io.*;
import java.net.*;

import java.util.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;

import java.awt.GridBagLayout;
import java.awt.GridBagConstraints;
import java.awt.Dimension;
import java.awt.Toolkit;

import javax.swing.JFrame;
import javax.swing.JTextArea;
import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.text.DefaultCaret;

class EstacionBase extends JFrame{
private static final long serialVersionUID = 1L;

private static final String logFile = "log.txt";

private DateFormat df;
private FileWriter logWriter;

private Socket sisnetSocket;
private ServerSocket serverSocket;
private Socket clientSocket;
private BufferedWriter outToPlane;
private BufferedWriter outToDataServer;
private BufferedReader inputFromDataServer;
private JTextArea console;

private boolean terminated;

public EstacionBase() {
setTitle("Base station");
createGUI();
pack();
setResizable(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLocationRelativeTo(null);
setVisible(true);

try{
df = new SimpleDateFormat ("[hh:mm:ss]");
logWriter = new FileWriter(System.getProperty("user.dir") + "\\" + logFile, true);
serverSocket = new ServerSocket(PORT); // A socket I use for listening for connections
} catch(IOException e){
JOptionPane.showMessageDialog(this, e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE);
}

//mainLoop(); // doing some stuff

try{
logWriter.close();
serverSocket.close();
} catch(IOException e){
JOptionPane.showMessageDialog(this, e.getMessage(), "Error", JOptionPane.ERROR_MESSAGE);
}
}

private void createGUI() {
setLayout(new GridBagLayout());
GridBagConstraints c = new GridBagConstraints();
c.gridx = 0;
c.gridy = 0;
c.fill = GridBagConstraints.BOTH;

console = new JTextArea(40, 80);
JScrollPane scroll = new JScrollPane(console);
DefaultCaret caret = (DefaultCaret) console.getCaret();
caret.setUpdatePolicy(DefaultCaret.ALWAYS_UPDATE); // Autoscroll
console.setText("Welcome to base station");
console.setEditable(false);
console.setVisible(true);
add(scroll, c);
}

private void writeToConsole(String msg) throws IOException{
Date now = new Date();
String timeStr = df.format(now);
console.append("\n");
console.append(timeStr + " " + msg);
writeToLogFile(msg, timeStr);
}

private void writeToLogFile(String msg, String timeStr) throws IOException{
logWriter.write(timeStr + " " + msg + CRLF);
logWriter.flush();
}

public static void main(String[] arg) {
EstacionBase frame = new EstacionBase();
}

}

最佳答案

这是一个GridBagLayout问题;我不确定最佳修复方法,但它适用于默认的 JFrame 布局 BorderLayout.CENTER。在功能上,这三种布局具有相似的效果:

  • BorderLayout.CENTER:JFrame#add() 的默认值。

  • GridLayout():一列,一行,无间隙。

  • GridBagLayout():默认的 GridBagConstraints() 将所有字段设置为默认值。

顺便说一句,Swing GUI 对象应该event dispatch thread 上构建和操作。 .

关于java - 在 Windows 7 平板电脑中执行时,我的 GUI 看起来很奇怪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12479894/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com