Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个游戏已经完成,现在需要导出。我希望人们能够为它制作模组,因此,我需要一个文件夹,其中包含我的游戏可以从该文件夹中找到并运行的所有类。
我知道如何将它导出到存档文件夹中,但是当你这样做时,你实际上无法运行它并播放它。
我在想它可以像 Minecraft 一样工作,它会在你的计算机上创建一个文件夹,里面有类,当你启动 Minecraft 时,它会找到这个文件夹并使用它来运行。
您可以将其导出为 Runnable Jar 文件。这样您就可以运行和播放它,并且当您使用存档管理器打开 jar 时,您可以看到这些类。
在 Eclipse 中右键单击并选择 export ,在“Java”下有一个 Runnable Jar 选项。选择您的 Launch 类和导出目标。
我希望这对你有所帮助。