10

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 である理由は、関数を別の目的で使用することを計画しているためですが、最初に file io を試しています。logcat で、次のエラーが表示されます。

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

面白いことに、Java ファイル io を使用して発信者アクティビティで同じファイルに読み書きしようとしても、問題はありません。そして、マニフェスト ファイルに書き込み権限があることを確認しました。また、FILE* file ...行を削除して、関数から返された double 値を使用しようとすると、プログラムは正常に実行されます。誰か助けてくれませんか?たとえば、問題は Android.mk または Application.mk ファイルに含める必要があるものでしょうか?

更新 違いがある場合は、Samsung Galaxy Note 2 を使用しています

UPDATE2

完全なコードは次のとおりです。

Java アクティビティ:

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;
}

}

ネイティブメソッドは次のとおりです。

/* 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)

そして、ここにマニフェストがあります:

<?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) で試しましたが、うまくいきました。問題は私の電話にあったようです。はぁ

4

1 に答える 1

0

ファイルパスが間違っている可能性があります。SDカードのパスを「/mnt/sdcard/」として使用しました。

正確には思い出せませんが、「/mnt/sdcard/...」または「mnt/sdcard/...」を試すことができます。

または、 を使用して SDCard パスを取得できますEnvironment.getExternalStorageDirectory().getAbsolutePath()

于 2013-03-07T09:05:36.647 に答える