LibGDX not using Android asset folder(LibGDX 不使用 Android 资产文件夹)
问题描述
我在编译 Android 或 IOS 版本时遇到了读取 assets 文件夹的 libGDX 项目的问题.在尝试访问 android 模块下 assets 文件夹中的文件时,我似乎总是在 IOS 或 Android 中得到 FileNotFoundException,但在桌面上运行时却没有.我的桌面配置指向 android 资产目录,就像它应该的那样.
I am having a problem with a libGDX project reading the assets folder when compiling the Android or IOS build. While trying to access a file in the assets folder under the android module, I always seem to get a FileNotFoundException in IOS or Android, but not when running it on the Desktop. My desktop config points the android asset directory like it should.
执行以下代码时:
public void readGameMap() throws IOException
{
readGameMap("gameMap.txt");
}
public void readGameMap(String path) throws IOException
{
Scanner s = new Scanner(Gdx.files.internal(path).file());
int i = 0;
while ((s.hasNextLine()))
{
String str = s.nextLine();
if (str.length() < maze.length)
throw new IOException("Incorrect game_map.txt structure");
for (int j = 0; j < str.length(); j++)
{
Object temp;
switch (str.charAt(j))
{
case '1':
temp = new Wall();
break;
case '3':
temp = new Dot();
break;
default:
temp = new Object();
break;
}
maze[j][i] = temp;
}
i++;
}
s.close();
}
抛出未找到文件异常.我的文件夹结构如下:
The file not found exception is thrown. My folder structure is as follows:
-Android
-assets
-gameMap.txt
-Desktop
-IOS
-HTML
-core
推荐答案
如果您使用的是Android Studio,请选择edit config...
In case if you are using Android Studio, select edit config...
将桌面应用程序"->工作目录"更改为您的 android 资产目录
Change 'Desktop Application' -> 'Working Directory' to your android asset forlder
这篇关于LibGDX 不使用 Android 资产文件夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:LibGDX 不使用 Android 资产文件夹
基础教程推荐
- 如何对 HashSet 进行排序? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01