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.
即使我保存的文件夹不存在,我的游戏在 Windows 7 上也能很好地执行和保存。我使用了以下代码(大致):
new File("Data/Saves").mkdirs();
当我将它发送给使用 Windows 8 的朋友时出现了问题。他说 Data 文件夹无处可寻,并且没有保存任何内容。显然是个大问题。是否存在兼容性问题或解决方法?它甚至是操作系统吗?
尝试使用至少给出的字符串在您的路径new File(".").getCanonicalPath();之前,我认为它对我有用,但我目前无法访问任何 Win8 系统......</p>
new File(".").getCanonicalPath();