Android NDK:为什么AAssetManager_open返回NULL

时间:2014-03-16 11:31:16

标签: android android-ndk

我有一些代码:

AAsset* pAsset = AAssetManager_open(pAssetManager, "asset_test.txt", AASSET_MODE_STREAMING);
DebugPrint(pAsset?"pAsset not NULL\n":"pAsset NULL");
if (pAsset)
{
    char buf[1024];
    AAsset_read(pAsset, buf, sizeof(buf));
    DebugPrint(buf);
    AAsset_close(pAsset);
}

此代码始终打印" pAsset NULL"在logcat。

我将asset_test.txt文件放在我的assets目录中,然后查看.apk以确保它存在,方法是将.apk重命名为.zip并用7zip打开它。

我还有更多代码:

AAssetDir* pAssetDir = AAssetManager_openDir(pAssetManager, sDirectory.c_str());

if (!pAssetDir)
{
    DebugPrint("pAssetDir NULL\n");
    return;
}

const char* pszDir;
while ((pszDir = AAssetDir_getNextFileName(pAssetDir)) != NULL)
{
    DebugPrint(pszDir);
}

AAssetDir_close(pAssetDir);

此代码不打印任何内容。换句话说,无论在哪个路径中,都没有找到资产目录中的文件。

注意:DebugPrint只是围绕__android_log_print()的更漂亮的包装器。

1 个答案:

答案 0 :(得分:2)

我将Activity传递给AAssetManager_fromJava(),而我应该传入AssetManager。如果你将错误的类传递给AAssetManager_fromJava(),它将失败而不向logcat打印任何内容。

如何使用JNI获取资产管理器:

    JNIEnv* env = (JNIEnv*)SDL_AndroidGetJNIEnv();

    jobject activity = (jobject)SDL_AndroidGetActivity();

    jclass activity_class = env->GetObjectClass(activity);

    jmethodID activity_class_getAssets = env->GetMethodID(activity_class, "getAssets", "()Landroid/content/res/AssetManager;");
    jobject asset_manager = env->CallObjectMethod(activity, activity_class_getAssets); // activity.getAssets();
    global_asset_manager = env->NewGlobalRef(asset_manager);

    pAssetManager = AAssetManager_fromJava(env, global_asset_manager);

将资产经理指针存放在某处,并从现在开始将其用于所有AAssetManager _ *()函数。