所以,是的,我正在以小程序的形式制作基于文本的 RPG。此小程序在打开时会写入您的 APPDATA 目录。它可以在 IDE 中运行,但是当我在 Firefox 中尝试时,它会出现一条错误消息。这是链接。
File otherWorldDirectory = new File(System.getenv("APPDATA") + "\\.otherWorld");
if (!otherWorldDirectory.exists()) {
//Adding the folder .otherWorld to the APPDATA
otherWorldDirectory.mkdir();
System.out.println("Directory '.otherWorld' created.");
} else {
//The folder .otherWorld already exists.
System.out.println("Directory '.otherWorld' is not created, it exists.");
}