qt给java如何传递文件,执行Java文件中的QT

I'm trying to execute a java file inside qt, here is my java file code:

import android.appwidget.AppWidgetManager;

import android.appwidget.AppWidgetProvider;

import android.content.Context;

public class Main extends AppWidgetProvider {

@Override

public void onUpdate(Context context, AppWidgetManager appWidgetManager,

int[] appWidgetIds) {

// TODO Auto-generated method stub

super.onUpdate(context, appWidgetManager, appWidgetIds);

}

}

The question is how this java file can be called, I'm confused & don't know how to call the function onUpdate, Any ideas ?

解决方案

To run Java code in your Qt Android application you should use the Qt Android Extras module which contains additional functionality for development on Android.

You can use JNI to call a Java function from C/C++ or callback a C/C++ function from Java.

Let's consider you have a static Java method like :

package com.MyApp;

public class JavaClass

{

public static int SomeMethod(int n)

{

...

}

}

First you need to add this to your .pro file :

QT += androidextras

And Include the relevant header file :

#include

You can then call a static java function from your C++ code like :

bool retVal = QAndroidJniObject::callStaticMethod

("com/MyApp/JavaClass" // class name

, "SomeMethod" // method name

, "(I)I" // signature

, val);

For a more detailed explanation you can see this.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值