gpt4 book ai didi

java - Android:使用 NDK 从 SD 卡读取文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:15:23 24 4
gpt4 key购买 nike

<分区>

我正在尝试使用 NDK 写入输出文件,但似乎无法正常工作。我写的代码是这样的:

JNIEXPORT jdouble JNICALL Java_com_example_sdcardtest2_CppMethods_nativeCalculations (JNIEnv* env, jclass clazz, jdouble dub){
jdouble hub = dub + 10;
FILE* file = fopen("/sdcard/textTest.txt","w+");
fputs("HELLO WORLD!\n", file);
fclose(file);
return hub;
}

返回类型为 double 的原因是我计划将该函数用于其他目的,但我首先尝试使用文件 io。在 logcat 中,我收到以下错误:

Fatal signal 11: (SIGSEGV) at 0x00000000c (code = 1) .....

有趣的是,当我尝试使用 java file io 在调用者 Activity 中写入或读取同一文件时,我没有遇到任何问题。我确保我在 list 文件中有写权限。此外,如果我删除 FILE* file ... 行,并尝试使用函数返回的 double 值,程序运行正常。有人可以帮忙吗?例如,问题可能是我应该在 Android.mk 或 Application.mk 文件中包含的内容吗?

更新我使用的是 Samsung galaxy note 2,如果有什么区别的话

更新 2

完整代码如下:

Java Activity :

public class MainActivity extends Activity {
private TextView text1;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

this.text1 = (TextView) findViewById(R.id.textView1);
double d = CppMethods.nativeCalculations(2.80);
String s = "The value of d is = " + d;

File f1 = new File("/sdcard/textTest.txt");
InputStream is = null;
try {
is = new FileInputStream(f1);
} catch (FileNotFoundException e) {
e.printStackTrace();
}

Scanner reader = new Scanner(is);


this.text1.setText(reader.nextLine().subSequence(0, s.length()));
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}

}

这是 native 方法:

/* DO NOT EDIT THIS FILE - it is machine generated */
#include "com_example_sdcardtest2_CppMethods.h"
#include <stdio.h>
#include <string.h>


/*
* Class: com_example_sdcardtest2_CppMethods
* Method: nativeCalculations
* Signature: (D)D
*/

JNIEXPORT jdouble JNICALL Java_com_example_sdcardtest2_CppMethods_nativeCalculations
(JNIEnv* env, jclass clazz, jdouble dub){
jdouble hub = dub + 10;
FILE* file = fopen("/sdcard/textTest.txt","w+");
fputs("hello, world\n", file);
fclose(file);




return hub;
}

这是 Android.mk:

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := com_example_sdcardtest2_CppMethods.c
LOCAL_MODULE := com_example_sdcardtest2_CppMethods
include $(BUILD_SHARED_LIBRARY)

这是 list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sdcardtest2"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.sdcardtest2.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

更新

最后更新:我在其他人的手机上尝试了相同的代码,同样是 galaxy note 2,它成功了。好像问题出在我的手机上。 感叹

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