gpt4 book ai didi

java - 如何将简单的java游戏放入窗口(applet)

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:25:01 25 4
gpt4 key购买 nike

我正在用 Java 开发一个非常简单的文字冒险游戏,我只是想知道如何将它放到一个窗口中,这样它看起来更像一个真正的游戏。就像我可以让别人点击一个图标,它会弹出这个简单的游戏吗?感谢您的帮助,如果浪费您的时间,我深表歉意!

//bored programming
import java.util.*;
public class test {
public static void main(String[] args){
Scanner input = new Scanner (System.in);
String x = "hey";
System.out.println("Welcome to adventure game!");
System.out.println();
System.out.println("Which way do you want to go?: ");
x = input.nextLine();
if (x.equals ("west")){
System.out.println("You walk towards the forest.");
west();
}
else if (x.equals("east"))
System.out.println("You go East!");
else if (x.equals("south"))
System.out.println("You go South!");
else if (x.equals("north"))
System.out.println("You go North!");
else
System.out.println("You cannot go that way!!");
}


public static void west(){
Scanner input = new Scanner (System.in);
System.out.println("Which way shall you go?");
String x = input.nextLine();

}
}

最佳答案

JTextArea可能是一个很好的起点。可以在 tutorial 中找到示例和 here .

关于java - 如何将简单的java游戏放入窗口(applet),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7135697/

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