• android开发jni开发遍历文件夹下的文件以及目录


    //kotlin层
    external fun listFiles(filePath:String): String
        
    //native层
    #include <jni.h>
    #include <string>
    #include <dirent.h>
    #include <android/log.h>
    
    #ifndef LOG_TAG
    #define LOG_TAG "HELLO_JNI"
    #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG ,__VA_ARGS__) // 定义LOGD类型
    #define LOGI(...) __android_log_print(ANDROID_LOG_INFO,LOG_TAG ,__VA_ARGS__) // 定义LOGI类型
    #define LOGW(...) __android_log_print(ANDROID_LOG_WARN,LOG_TAG ,__VA_ARGS__) // 定义LOGW类型
    #define LOGE(...) __android_log_print(ANDROID_LOG_ERROR,LOG_TAG ,__VA_ARGS__) // 定义LOGE类型
    #define LOGF(...) __android_log_print(ANDROID_LOG_FATAL,LOG_TAG ,__VA_ARGS__) // 定义LOGF类型
    #endif
        
    extern "C"
    JNIEXPORT jstring JNICALL
    Java_com_suyf_ndkdev_MainActivity_listFiles(JNIEnv *env, jobject thiz, jstring file_path) {
        const char *path = env->GetStringUTFChars(file_path, 0);
        DIR *dirPtr = opendir(path);
        struct dirent *ptr;
        char base[1000];
    
        if (dirPtr == NULL) {
            LOGE("opendir fail.....................");
            exit(-1);
        }
    
        while ((ptr = readdir(dirPtr)) != NULL) {
            if (strcmp(ptr->d_name, ".") == 0 ||
                strcmp(ptr->d_name, "..") == 0)    ///current dir OR parrent dir
                continue;
            else if (ptr->d_type == 8)    ///file
                LOGE("d_name:%s/%s
    ", path, ptr->d_name);
            else if (ptr->d_type == 10)    ///link file
                printf("d_name:%s/%s
    ", path, ptr->d_name);
            else if (ptr->d_type == 4) {    ///dir
                memset(base, '', sizeof(base));
                strcpy(base, path);
                strcat(base,"/");
                strcat(base,ptr->d_name);
                LOGE("d_dir:%s/%s
    ", path, ptr->d_name);
                jstring newDir = env->NewStringUTF(base);
                Java_com_suyf_ndkdev_MainActivity_listFiles(env,thiz,newDir);
            }
        }
        closedir(dirPtr);
        return file_path;
    }
    

    错误记录:

    Fatal signal 5 (SIGTRAP) code 1 (TRAP_BRKPT)
    native层函数缺少return返回值

  • 相关阅读:
    c#以文件流的形式输出xml(可以解决内存溢出)-XmlTextWriter
    c# 大数据量比较时-方案
    c# 大数据量比较时-方案
    sql中插入多条记录-微软批处理
    sql中插入多条记录-微软批处理
    c#上传图片
    c#上传图片
    sql 数据库优化
    mysql处理旧数据-使用模板以及临时表,不建议直接使用本表!!
    margin-bottom无效问题以及div里内容动态居中样式!
  • 原文地址:https://www.cnblogs.com/yongfengnice/p/15248808.html
Copyright © 2020-2023  润新知