0

我将 .bin 文件放在 android 的资产中。我想读它。我使用这个根:

fis = new FileInputStream("x:" + File.separator + "work"+File.separator+"game1"+File.separator+"File"+File.separator+"game1"+File.separator+"assets"+File.separator+"01.bin");

但这是不对的。运行后显示找不到文件。如何获取此文件?

4

2 回答 2

1

尝试这样的事情:

AssetManager assetManager = getResources().getAssets();
InputStream inputStream = null;

    try {
        inputStream = assetManager.open("foo.txt");
            if ( inputStream != null)
                Log.d(TAG, "It worked!");
        } catch (IOException e) {
            e.printStackTrace();
        }

有关详细示例,请参见此链接。

Android 从资产中读取文件

于 2012-12-14T06:37:12.777 回答
1

试试这个..

AssetManager assetManager = getResources().getAssets();
InputStream input;
try
{
input = assetManager.open("01.bin");   
}
catch (IOException e)
{
e.printStackTrace();
}
于 2012-12-14T06:45:36.027 回答