{"id":1541,"date":"2021-11-08T16:37:16","date_gmt":"2021-11-08T08:37:16","guid":{"rendered":"https:\/\/badgameshow.com\/fly\/?p=1541"},"modified":"2021-11-08T16:39:04","modified_gmt":"2021-11-08T08:39:04","slug":"java-%e6%89%93%e5%8c%85jar%e6%aa%94%e4%b8%a6%e8%bd%89%e6%88%90exe%e6%aa%94","status":"publish","type":"post","link":"https:\/\/badgameshow.com\/fly\/java-%e6%89%93%e5%8c%85jar%e6%aa%94%e4%b8%a6%e8%bd%89%e6%88%90exe%e6%aa%94\/","title":{"rendered":"Java \u6253\u5305JAR\u6a94\u4e26\u8f49\u6210EXE\u6a94"},"content":{"rendered":"<h1>Java \u6253\u5305JAR\u6a94\u4e26\u8f49\u6210EXE\u6a94<\/h1>\n<h5>\u6211\u5011\u90fd\u77e5\u9053Java\u53ef\u4ee5\u5c07\u4e8c\u9032\u4f4d\u5236\u7a0b\u5f0f\u6253\u5305\u6210\u53ef\u57f7\u884cjar\u6a94\u6848,\u96d9\u64ca\u9019\u500bjar\u548c\u96d9\u64caexe\u6548\u679c\u662f\u4e00\u6a23\u4e00\u6a23\u7684,\u4f46\u611f\u89ba\u9084\u662f\u4e0d\u540c\u3002\u5176\u5be6\u5c07java\u7a0b\u5f0f\u6253\u5305\u6210exe\u4e5f\u9700\u8981\u8edf\u9ad4\u4f86\u57f7\u884c\uff0c\u9019\u7bc7\u5c07\u6703\u4ecb\u7d39\u5982\u4f55\u628aJAR\u8f49\u6210EXE\u3002<\/h5>\n<hr \/>\n<h4>\u6587\u7ae0\u76ee\u9304<\/h4>\n<ol>\n<li><a href=\"#a\">\u5275\u5efa\u4e00\u500bMain\u65b9\u6cd5\u70ba\u5165\u53e3\u9ede<\/a><\/li>\n<li><a href=\"#b\">\u8a2d\u7f6eArtifacts<\/a><\/li>\n<li><a href=\"#c\">\u5275\u5efaJAR\u6a94&#038;\u4f7f\u7528Java\u547d\u4ee4\u884c\u57f7\u884c<\/a><\/li>\n<li><a href=\"#d\">\u4e0b\u8f09exe4j\u8edf\u9ad4<\/a><\/li>\n<li><a href=\"#e\">exe4j\u5fc5\u8981\u8a2d\u5b9a<\/a><\/li>\n<li><a href=\"#f\">\u5099\u8a3b<\/a><\/li>\n<\/ol>\n<hr \/>\n<p><a id=\"a\"><\/a><\/p>\n<h4>1.\u5275\u5efa\u4e00\u500bMain\u65b9\u6cd5\u70ba\u5165\u53e3\u9ede<\/h4>\n<pre><code class=\"language-Kotlin line-numbers\">import javax.swing.*;\nimport java.awt.*;\nimport java.net.URI;\n\npublic class WindowCreate {\n\n    static JFrame frame;\n    static JButton iconButton;\n    static JButton finishButton;\n    static JLabel descriptionLabel;\n    static JLabel nameLabel;\n    static JLabel statusLabel;\n    static JTextField descriptionField;\n    static JTextField nameField;\n\n    public static void main(String[] args) {\n        frame = new JFrame(\"\u6211\u662f\u6a19\u984c\");\n\n        iconButton = new JButton();\n        iconButton.setIcon(new ImageIcon(\"conf\/logo.gif\"));\n        iconButton.setBorderPainted(false);\n        iconButton.setBackground(Color.decode(\"#EEEEEE\"));\n        iconButton.addActionListener(e -&gt; {\n            try {\n                Desktop desktop = Desktop.getDesktop();\n                URI uri = new URI(\"https:\/\/www.youtube.com\/results?search_query=%E5%B0%8F%E7%A4%A6%E5%B7%A5%E6%8C%96%E6%8C%96%E7%A4%A6\");\n                desktop.browse(uri);\n            } catch (Exception ex) {\n                ex.printStackTrace();\n            }\n        });\n\n        JPanel panel = new JPanel();\n        panel.setBackground(Color.decode(\"#EEEEEE\"));\n        panel.add(iconButton);\n\n        JPanel panel2 = new JPanel();\n        panel2.setBackground(Color.decode(\"#EEEEEE\"));\n        descriptionLabel = new JLabel(\"NFT  \u4f5c\u54c1\u4ecb\u7d39\");\n        descriptionField = new JTextField(16);\n        panel2.add(descriptionLabel);\n        panel2.add(descriptionField);\n\n        JPanel panel3 = new JPanel();\n        panel3.setBackground(Color.decode(\"#EEEEEE\"));\n        nameLabel = new JLabel(\"NFT \u4f5c\u54c1\u540d\u7a31\");\n        nameField = new JTextField(16);\n        panel3.add(nameLabel);\n        panel3.add(nameField);\n\n        JPanel panel4 = new JPanel();\n        panel4.setBackground(Color.decode(\"#EEEEEE\"));\n        finishButton = new JButton();\n        finishButton.setBorderPainted(false);\n        finishButton.setBackground(Color.decode(\"#EEEEEE\"));\n        finishButton.setIcon(new ImageIcon(\"conf\/start.gif\"));\n        finishButton.addActionListener(e -&gt; {\n            if (descriptionField.getText().isEmpty()) {\n                statusLabel.setText(\"\u8acb\u8f38\u5165\u4f5c\u54c1\u4ecb\u7d39\");\n                return;\n            }\n            if (nameField.getText().isEmpty()) {\n                statusLabel.setText(\"\u8acb\u8f38\u5165\u4f5c\u54c1\u540d\u7a31\");\n            }\n        });\n        panel4.add(finishButton);\n\n        JPanel panel5 = new JPanel();\n        panel5.setBackground(Color.decode(\"#EEEEEE\"));\n        statusLabel = new JLabel(\"\");\n        panel5.add(statusLabel);\n\n        frame.getContentPane().setLayout(new FlowLayout(FlowLayout.CENTER));\n        frame.add(panel);\n        frame.add(panel2);\n        frame.add(panel3);\n        frame.add(panel4);\n        frame.add(panel5);\n\n        frame.setResizable(false);\n        frame.setIconImage(new ImageIcon(\"conf\/icon.png\").getImage());\n        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);\n        frame.setSize(380, 500);\n        frame.setLocationRelativeTo(null);\n        frame.setVisible(true);\n    }\n}\n<\/code><\/pre>\n<p><a id=\"b\"><\/a><\/p>\n<h4>2.\u8a2d\u7f6eArtifacts<\/h4>\n<h5>a.File > Project Structure > Artifacts<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_cf36c073b6289ad55ed911c9d3fa8723.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_cf36c073b6289ad55ed911c9d3fa8723.jpg\" width=\"80%\"\/><\/a><\/p>\n<h5>b.\u9078\u64c7JAR<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_f47a1ade1d8e918cb7fd7966adc87ac4.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_f47a1ade1d8e918cb7fd7966adc87ac4.jpg\" width=\"80%\"\/><\/a><\/p>\n<h5>c.\u9078\u64c7Main Class\u7576\u4f5c\u4e3b\u5165\u53e3&amp;MANIFEST.MF\u5132\u5b58\u8def\u5f91<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_2c44033e17ebb70d254a8d7e234a9602.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_2c44033e17ebb70d254a8d7e234a9602.jpg\" width=\"80%\"\/><\/a><\/p>\n<h5>d.\u5b8c\u6210\u8a2d\u7f6e<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_651b6cfbc54e9a0e804317c963ff3a4d.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_651b6cfbc54e9a0e804317c963ff3a4d.jpg\" width=\"80%\"\/><\/a><\/p>\n<p><a id=\"c\"><\/a><\/p>\n<h4>3.\u5275\u5efaJAR\u6a94&amp;\u4f7f\u7528Java\u547d\u4ee4\u884c\u57f7\u884c<\/h4>\n<h5>a.Build > Build Artifacts<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_73a02d8e95f58c75fb1e9c043c0c52be.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_73a02d8e95f58c75fb1e9c043c0c52be.jpg\" width=\"40%\"\/><\/a><\/p>\n<h5>b.\u5b58\u653e\u8def\u5f91out\\artifacts\\JFrameTest_jar<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_620e528b346e75336c9553b8621a774e.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_620e528b346e75336c9553b8621a774e.jpg\" width=\"80%\"\/><\/a><\/p>\n<h5>c.\u547d\u4ee4\u884c\u57f7\u884c<\/h5>\n<pre><code class=\"line-numbers\">java -jar .\\NFT_Creator.main.jar\n<\/code><\/pre>\n<h5>d.\u57f7\u884c\u7d50\u679c<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_c8131a291eae864bc851f4ca0409348c.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_c8131a291eae864bc851f4ca0409348c.jpg\" width=\"50%\"\/><\/a><\/p>\n<p><a id=\"d\"><\/a><\/p>\n<h4>4.\u4e0b\u8f09exe4j\u8edf\u9ad4<\/h4>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.ej-technologies.com\/download\/exe4j\/files\" target=\"_blank\" rel=\"noopener\">exe4j\u8edf\u9ad4<\/a><\/p>\n<p><a id=\"e\"><\/a><\/p>\n<h4>5.exe4j\u5fc5\u8981\u8a2d\u5b9a<\/h4>\n<h5>\u9078\u64c7\u4e0b\u65b9EXE<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_e0427cbc7c1efb2c315a28c37d60be28.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_e0427cbc7c1efb2c315a28c37d60be28.jpg\" width=\"80%\"\/><\/a><\/p>\n<h5>EXE\u8f38\u51fa\u8cc7\u6599\u593e<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_06d5073216734a4faa000f3685cd0b77.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_06d5073216734a4faa000f3685cd0b77.jpg\" width=\"80%\"\/><\/a><\/p>\n<h5>EXE\u8f38\u51fa\u6a94\u540d\u8207logo\u914d\u7f6e<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_6fb589a468f4c6428b90317b57ad6110.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_6fb589a468f4c6428b90317b57ad6110.jpg\" width=\"80%\"\/><\/a><\/p>\n<h5>\u8a2d\u5b9aJRE\u74b0\u5883 \u4e3b\u5165\u53e3<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_45ebaf04065c3e1d2d48199b87b8f7da.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_45ebaf04065c3e1d2d48199b87b8f7da.jpg\" width=\"80%\"\/><\/a><\/p>\n<h5>\u751f\u621064\u4f4d\u5143<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_3616cc734b0bf55134a2946e379fafb6.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_3616cc734b0bf55134a2946e379fafb6.jpg\" width=\"80%\"\/><\/a><\/p>\n<h5>\u8a2d\u5b9aJRE\u74b0\u5883\u624d\u80fd\u57f7\u884c<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_f1547ef6856df9e02d23ab479afe11f2.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_f1547ef6856df9e02d23ab479afe11f2.jpg\" width=\"80%\"\/><\/a><\/p>\n<h5>\u8f38\u51faEXE<\/h5>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_36254ede5fc4528ef95313d478ec47f9.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_36254ede5fc4528ef95313d478ec47f9.jpg\" width=\"80%\"\/><\/a><\/p>\n<p><a id=\"f\"><\/a><\/p>\n<h4>6.\u5099\u8a3b<\/h4>\n<h4>\u5982\u679c\u6709\u4f7f\u7528\u5230\u5716\u7247\u4ee5\u53ca\u74b0\u5883\u90fd\u8981\u653e\u7f6e\u5728EXE\u80fd\u5920\u8b80\u53d6\u5230\u7684\u8cc7\u6599\u593e\uff0c\u5426\u5247UI\u986f\u793a\u4e0d\u51fa\u4f86\u3002<\/h4>\n<p><a href=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_4274b3ea377c2805bda3bdfdb25bad2b.jpg\"><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2021\/11\/wp_editor_md_4274b3ea377c2805bda3bdfdb25bad2b.jpg\" width=\"80%\"\/><\/a><\/p>\n\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>","protected":false},"excerpt":{"rendered":"<p>Java \u6253\u5305JAR\u6a94\u4e26\u8f49\u6210EXE\u6a94 \u6211\u5011\u90fd\u77e5\u9053Java\u53ef\u4ee5\u5c07\u4e8c\u9032\u4f4d\u5236\u7a0b\u5f0f\u6253\u5305\u6210\u53ef\u57f7\u884cjar\u6a94\u6848,\u96d9\u64ca\u9019\u500bja &hellip; <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"pgc_sgb_lightbox_settings":"","footnotes":""},"categories":[7],"tags":[209,208,14],"class_list":["post-1541","post","type-post","status-publish","format-standard","hentry","category-java","tag-exe","tag-jar","tag-java"],"_links":{"self":[{"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/posts\/1541","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/comments?post=1541"}],"version-history":[{"count":2,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/posts\/1541\/revisions"}],"predecessor-version":[{"id":1544,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/posts\/1541\/revisions\/1544"}],"wp:attachment":[{"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/media?parent=1541"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/categories?post=1541"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/tags?post=1541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}