如何在Qthread中使用QAndroidJniEnvironment指针?

时间:2015-03-15 06:42:09

标签: qt qthread qtandroidextras

在qt主线程中我成功运行了这个:

 jbyteArray jBuffer = _env->NewByteArray(bufferSize);

_envQAndroidJniEnvironment。但如果我尝试在_env的运行函数中使用QRunnable,应用程序崩溃并发生此错误:

Fatal signal 11 (SIGSEGV), code 1

这是代码:

class HelloWorldTask : public QRunnable
{
    QAndroidJniEnvironment * _env;
    void run()
    {
        qDebug() << "Hello world from thread" << QThread::currentThread();

        jbyteArray jBuffer = (*_env)->NewByteArray(10);
        qDebug() << "Hello 2 world from thread" << QThread::currentThread();
    }
public:
    void setPointer(QAndroidJniEnvironment * p){
        _env = p;
    }
};

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();


    HelloWorldTask * hello = new HelloWorldTask();
    QAndroidJniEnvironment env;
    QAndroidJniEnvironment * p = & env;
    hello->setPointer(p);
    QThreadPool::globalInstance()->start(hello);
    return a.exec();
}

您能否告诉我如何在新的Qthread中使用指向QAndroidJniEnvironmentQAndroidJniObject的指针?所以应用程序ui在执行java进程时仍然保持响应。

1 个答案:

答案 0 :(得分:2)

到目前为止,只有15人读过这个问题。仍然没有答案。我要回答这个问题非常困难或非常简单! 无论如何,我在qt论坛用户的帮助下找到了解决方案。这是工作代码:

class HelloWorldTask : public QRunnable
{
    QAndroidJniEnvironment * _env;
    void run()
    {
        JNIEnv * jniEnv;
        JavaVM * jvm = _env->javaVM();
        qDebug() << "Getting jni environment";
        jvm->GetEnv(reinterpret_cast<void**>(&_env), JNI_VERSION_1_6);
        qDebug() << "Attaching current thread";
        jvm->AttachCurrentThread(&jniEnv,NULL);
        qDebug() << "Creating byte array" ;
        jbyteArray jBuffer = jniEnv->NewByteArray(10);
        qDebug() << "byte array created" ;
        jvm->DetachCurrentThread();
    }
public:
    void setPointer(QAndroidJniEnvironment * p){
        _env = p;
    }
};

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();


    HelloWorldTask * hello = new HelloWorldTask();


    QAndroidJniEnvironment * env;
    hello->setPointer(env);
    // QThreadPool takes ownership and deletes 'hello' automatically
    QThreadPool::globalInstance()->start(hello);
    return a.exec();
}

您应该调用AttachCurrentThread以在另一个线程中使用jni环境指针。我希望这有助于某人。