gpt4 book ai didi

java - JOptionPane 将我的代码变成一个实际的游戏

转载 作者:行者123 更新时间:2023-12-01 19:11:04 25 4
gpt4 key购买 nike

嘿,我有一些简单的游戏代码。我想要一个图标,我可以双击打开这个游戏,而不是打开我的代码并编译和运行它。有没有一种简单的方法可以做到这一点?我不希望它成为可执行文件,因为我使用的是 Mac。这是我的代码。

import javax.swing.*;
import java.awt.*;
public class test{
public static void main(String[] args){


//Custom button text
Object[] options = {"Right",
"Left"};
int n = JOptionPane.showOptionDialog(null,
"Which way would you like to go?",
"Adventure Game",
JOptionPane.YES_NO_CANCEL_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
options,
options[0]);

if(n == JOptionPane.YES_OPTION)
JOptionPane.showOptionDialog(null,
"You went the wrong way!",
"Adventure Game",
JOptionPane.YES_NO_CANCEL_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
options,
options[0]);
else
JOptionPane.showOptionDialog(null,
"You went left!",
"Adventure Game",
JOptionPane.YES_NO_CANCEL_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
options,
options[0]);




System.exit(0);
}
}

最佳答案

您希望将其构建到一个 jar 文件中,并在 list 中引用您的主类。

您可以尝试使用 apache ant 来执行此操作:http://ant.apache.org/manual/Tasks/jar.html

关于java - JOptionPane 将我的代码变成一个实际的游戏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8397185/

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