{"id":3683,"date":"2023-08-24T14:52:27","date_gmt":"2023-08-24T06:52:27","guid":{"rendered":"https:\/\/www.yimenyun.cn\/emen\/?p=3683"},"modified":"2023-08-24T14:52:27","modified_gmt":"2023-08-24T06:52:27","slug":"app%e5%bc%80%e5%8f%91%e4%b9%9d%e5%ae%ab%e6%a0%bcjava%e4%bb%a3%e7%a0%81%e4%bd%9c%e7%94%a8%e4%bb%8b%e7%bb%8d","status":"publish","type":"post","link":"https:\/\/www.yimenyun.cn\/emen\/3683\/","title":{"rendered":"app\u5f00\u53d1\u4e5d\u5bab\u683cjava\u4ee3\u7801\u4f5c\u7528\u4ecb\u7ecd"},"content":{"rendered":"

\u4e5d\u5bab\u683c\u662f\u4e00\u4e2a\u7ecf\u5178\u7684UI\u8bbe\u8ba1\uff0c\u5e7f\u6cdb\u5e94\u7528\u4e8e\u624b\u673a\u5e94\u7528\u7a0b\u5e8f\u3002\u5728\u672c\u6587\u4e2d\uff0cAPP<\/a>\u6211\u4eec\u5c06\u4ecb\u7ecd\u5982\u4f55\u4f7f\u7528Java\u4ee3\u7801\u6765\u521b\u5efa\u4e5d\u5bab\u683c\u5e03\u5c40\uff0c\u5e76\u4ecb\u7ecd\u5b9e\u73b0\u7684\u539f\u7406\u3002<\/p>\n

## \u539f\u7406<\/p>\n

\u4e5d\u5bab\u683c\u662f\u4e00\u79cd\u975e\u5e38\u6d41\u884c\u7684UI\u8bbe\u8ba1\uff0c\u5c31\u662f\u628a\u754c\u9762\u5206\u62109\u4e2a\u683c\u5b50\uff0c\u6bcf\u4e2a\u683c\u5b50\u7684\u5c3a\u5bf8\u76f8\u7b49\uff0c\u53ef\u4ee5\u653e\u7f6e\u4e0d\u540c\u7684\u7ec4\u4ef6\uff08\u6bd4\u5982\u6309\u94ae\u3001\u56fe\u7247\u6216\u6587\u672c\uff09\u3002\u5b9e\u73b0\u4e5d\u5bab\u683c\u5e03\u5c40\u7684\u65b9\u6cd5\u6709\u5f88\u591a\u79cd\uff0c\u4f46\u662f\u6700\u5e38\u89c1\u7684\u4e00\u79cd\u65b9\u6cd5\u662f\u4f7f\u7528\u8868\u683c\u5e03\u5c40\uff08Grid Layout\uff09\u3002<\/p>\n

\u8868\u683c\u5e03\u5c40\u662f\u57fa\u4e8e\u884c\u548c\u5217\u7684\u5e03\u5c40\u65b9\u5f0f\uff0c\u5b83\u628aGUI\u754c\u9762\u5206\u6210\u4e00\u5b9a\u6570\u76ee\u7684\u884c\u548c\u5217\uff0c\u6bcf\u4e2a\u5355\u5143\u683c\u53ef\u4ee5\u653e\u7f6e\u4e00\u4e2a\u7ec4\u4ef6\uff0c\u5982\u679c\u67d0\u4e2a\u5355\u5143\u683c\u6ca1\u6709\u88ab\u4f7f\u7528\uff0c\u90a3\u4e48\u5c31\u4f1a\u81ea\u52a8\u88ab\u7559\u7a7a\u3002\u4f7f\u7528\u8868\u683c\u5e03\u5c40\u53ef\u4ee5\u975e\u5e38\u65b9\u4fbf\u5730\u5b9e\u73b0\u4e5d\u5bab\u683c\u3002<\/p>\n

## \u4ee3\u7801\u5b9e\u73b0<\/p>\n

\u4ee5\u4e0b\u662f\u4f7f\u7528Java\u4ee3\u7801\u5b9e\u73b0\u4e5d\u5bab\u683c\u5e03\u5c40\u7684\u4e00\u4e2a\u57fa\u672c\u4f8b\u5b50\u3002<\/p>\n

“`java<\/p>\n

import javax.swing.*;<\/p>\n

import java.awt.*;<\/p>\n

public class NineBox extends JFrame {<\/p>\n

public NineBox() {<\/p>\n

setTitle(“\u4e5d\u5bab\u683c”);<\/p>\n

Container contentPane = getContentPane();<\/p>\n

contentPane.setLayout(new GridAPP\u5f00\u53d1<\/a>Layout(3, 3, 5, 5));\/\/\u4f7f\u7528\u8868\u683c\u5e03\u5c40<\/p>\n

for(int i=1;i<\/p>\n

JButton button = new JButton();<\/p>\n

button.setText(“\u6309\u94ae”+i);<\/p>\n

\n

<\/figure>\n<\/p>\n

contentPane.add(button);<\/p>\n

}<\/p>\n

setResizable(false);<\/p>\n

pack();<\/p>\n

}<\/p>\n

public static void main(String[] args) {<\/p>\n

NineBox frame=new NineBox();<\/p>\n

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);<\/p>\n

frame.setVisible(true);<\/p>\n

}<\/p>\n

}<\/p>\n

“`<\/p>\n

\u5728\u4ee3\u7801\u4e2d\uff0c\u6211\u4eec\u9996\u5148\u4f7f\u7528JFrame\u7c7b\u521b\u5efa\u4e86\u4e00\u4e2a\u7a97\u53e3\u3002\u7136\u540e\u6211\u4eec\u901a\u8fc7getContentPan()\u65b9\u6cd5\u83b7\u53d6\u5230\u4e86\u8be5\u7a97\u53e3\u7684\u5185\u5bb9\u9762\u677f\uff0c\u5e76\u4f7f\u7528GridLayout\u7c7b\u6765\u5b9e\u73b0\u4e5d\u5bab\u683c\u5e03\u5c40\u3002\u5176\u4e2d\uff0cGridLayout\u7c7b\u7684\u4e09\u4e2a\u53c2\u6570\u5206\u522b\u6307\u5b9a\u4e86\u884c\u6570\u3001\u5217\u6570\u548c\u5355\u5143\u683c\u4e4b\u95f4\u7684\u6c34\u5e73\u548c\u5782\u76f4\u95f4\u8ddd\u3002<\/p>\n

\u6700\u540e\uff0c\u6211\u4eec\u5bf9\u4e5d\u5bab\u683c\u4e2d\u7684\u6bcf\u4e2a\u5355\u5143\u683c\u6dfb\u52a0\u4e86\u4e00\u4e2a\u6309\u94ae\u3002\u6700\u540e\u8c03\u7528pack()\u65b9\u6cd5\u53ef\u4ee5\u81ea\u52a8\u8c03\u6574\u7a97\u53e3\u7684\u5927\u5c0f\u4ee5\u9002\u5e94\u5e03\u5c40\u3002<\/p>\n

## \u603b\u7ed3<\/p>\n

\u4ee5\u4e0a\u662f\u4f7f\u7528Java\u4ee3\u7801\u5b9e\u73b0\u4e5d\u5bab\u683c\u5e03\u5c40\u7684\u4e00\u4e2a\u4f8b\u5b50\u3002\u901a\u8fc7\u8fd9\u4e2a\u4f8b\u5b50\uff0c\u6211\u4eec\u53ef\u4ee5\u4e86\u89e3\u5230\u5982\u4f55\u4f7f\u7528\u8868\u683c\u5e03\u5c40\u6765\u5b9e\u73b0\u4e5d\u5bab\u683c\u5e03\u5c40\uff0c\u5e76\u5b66\u4e60\u5230\u4e86\u4f7f\u7528Java\u521b\u5efaGUI\u754c\u9762\u7684\u57fa\u672c\u6280\u5de7\u3002\u5982\u679c\u4f60\u9700\u8981\u5b9e\u73b0\u4e00\u4e2a\u5e26\u6709\u4e5d\u5bab\u683c\u5e03\u5c40\u7684UI\u8bbe\u8ba1\uff0c\u90a3\u4e48\u8fd9\u4e2a\u4f8b\u5b50\u5c31\u662f\u4e00\u4e2a\u975e\u5e38\u597d\u7684\u8d77\u70b9\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"

\u4e5d\u5bab\u683c\u662f\u4e00\u4e2a\u7ecf\u5178\u7684UI\u8bbe\u8ba1\uff0c\u5e7f\u6cdb\u5e94\u7528\u4e8e\u624b\u673a\u5e94\u7528\u7a0b\u5e8f\u3002\u5728\u672c\u6587\u4e2d\uff0c\u6211\u4eec\u5c06\u4ecb\u7ecd\u5982\u4f55\u4f7f\u7528Java\u4ee3\u7801\u6765\u521b\u5efa\u4e5d\u5bab\u683c\u5e03\u5c40\uff0c\u5e76\u4ecb\u7ecd\u5b9e\u73b0\u7684\u539f\u7406\u3002## \u539f\u7406\u4e5d\u5bab\u683c\u662f\u4e00\u79cd\u975e\u5e38\u6d41\u884c\u7684UI\u8bbe\u8ba1\uff0c\u5c31\u662f\u628a\u754c\u9762\u5206\u62109\u4e2a\u683c\u5b50\uff0c\u6bcf\u4e2a<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[6480,2387,7310,401,2518],"topic":[],"class_list":["post-3683","post","type-post","status-publish","format-standard","hentry","category-appkf","tag-h5","tag-htmlapk","tag-7310","tag-401","tag-2518"],"_links":{"self":[{"href":"https:\/\/www.yimenyun.cn\/emen\/wp-json\/wp\/v2\/posts\/3683","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.yimenyun.cn\/emen\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.yimenyun.cn\/emen\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.yimenyun.cn\/emen\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.yimenyun.cn\/emen\/wp-json\/wp\/v2\/comments?post=3683"}],"version-history":[{"count":0,"href":"https:\/\/www.yimenyun.cn\/emen\/wp-json\/wp\/v2\/posts\/3683\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.yimenyun.cn\/emen\/wp-json\/wp\/v2\/media?parent=3683"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.yimenyun.cn\/emen\/wp-json\/wp\/v2\/categories?post=3683"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.yimenyun.cn\/emen\/wp-json\/wp\/v2\/tags?post=3683"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.yimenyun.cn\/emen\/wp-json\/wp\/v2\/topic?post=3683"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}