为什么按钮全屏?

发布于 2025-01-09 05:25:36 字数 1583 浏览 0 评论 0原文

代码:

package src.com.Scanner.Scan;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.JSONArray;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
import javax.swing.*;

import java.awt.*;
import java.nio.charset.StandardCharsets;
import java.util.Base64;

public class Main {
    public static void main(String[] args) throws ParseException {
        JFrame Frame = new JFrame();
        Frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
        Frame.setVisible(true);
        JButton Button = new JButton("test");
        Button.setBounds(25,25,5,5);
        Button.setBorder(null);
        Button.setBackground(Color.CYAN);
        Frame.add(Button);

        JSONObject obj = new JSONObject();
        obj.put("Name", "JOHN");
        obj.put("unix", "50000");

        String objstring = obj.toString();

        String EncodedString = Base64.getUrlEncoder().encodeToString(objstring.getBytes(StandardCharsets.UTF_8));

        System.out.println(obj);
        System.out.println(EncodedString);

        byte[] decodedBytes = Base64.getDecoder().decode(EncodedString);
        String decodedString = new String(decodedBytes);

        JSONParser parser = new JSONParser();
        JSONObject obJSONObject = new JSONObject();

        obJSONObject = (JSONObject) parser.parse(decodedString);

        System.out.println(obJSONObject);

    }
}

但是按钮是全屏的,就像全屏一样,而不是我设置的大小,为什么会这样做以及如何修复它?

我使用 IntelliJ 和 Java 16。

The code:

package src.com.Scanner.Scan;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.JSONArray;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
import javax.swing.*;

import java.awt.*;
import java.nio.charset.StandardCharsets;
import java.util.Base64;

public class Main {
    public static void main(String[] args) throws ParseException {
        JFrame Frame = new JFrame();
        Frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
        Frame.setVisible(true);
        JButton Button = new JButton("test");
        Button.setBounds(25,25,5,5);
        Button.setBorder(null);
        Button.setBackground(Color.CYAN);
        Frame.add(Button);

        JSONObject obj = new JSONObject();
        obj.put("Name", "JOHN");
        obj.put("unix", "50000");

        String objstring = obj.toString();

        String EncodedString = Base64.getUrlEncoder().encodeToString(objstring.getBytes(StandardCharsets.UTF_8));

        System.out.println(obj);
        System.out.println(EncodedString);

        byte[] decodedBytes = Base64.getDecoder().decode(EncodedString);
        String decodedString = new String(decodedBytes);

        JSONParser parser = new JSONParser();
        JSONObject obJSONObject = new JSONObject();

        obJSONObject = (JSONObject) parser.parse(decodedString);

        System.out.println(obJSONObject);

    }
}

But the button is fullscreen like full screen, not the size I set why does it do that and how can I fix it?

Im using IntelliJ and Java 16.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文