gpt4 book ai didi

java - 当我使用 Gdx.files.local(path) 时,Gdx 在哪里搜索?

转载 作者:行者123 更新时间:2023-11-30 03:54:44 28 4
gpt4 key购买 nike

我在游戏中使用 libgdx。我想读/写文本文件来更新高分,非常简单。我已经在“$ANDROID-PROJECT/assets/data”中创建了三个文件,但是当我使用 Gdx.files.local("data/file.txt") 时 Gdx 似乎找不到它们,但是当我使用Gdx.files.internal("data/file.txt").因为我还需要写入文件,所以我不得不使用 Gdx.files.local。

谁能告诉我当我使用 Gdx.files.local(path) 时 Gdx 在哪里搜索?我应该指定什么路径?

代码:

//for read
FileHandle file = Gdx.files.local("data/scoresCla.txt");

clasico = Float.parseFloat(file.readString());

//for write
FileHandle file = Gdx.files.local("data/scoresCla.txt");

file.writeString(String.valueOf(res), false);

最佳答案

如果有人遇到这个问题,我通过将 Gdx.files.local 更改为 Gdx.files.external 来解决。这种方式将文件存储在SD卡中,它具有与本地相同的R/W文件功能,但在SD卡中。

关于java - 当我使用 Gdx.files.local(path) 时,Gdx 在哪里搜索?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13533441/

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