我正在为Android开发基于Qt的应用程序。如果应用程序是由于打开文件而启动的,我需要将其传递给Qt应用程序实例。我创建了一个自定义Java活动,以实现此行为:
public class MyActivity extends org.qtproject.qt5.android.bindings.QtActivity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
Intent i = getIntent();
String act = i.getAction();
if (act != null) && act.compareTo(Intent.ACTION_VIEW) == 0)
{
int fd = -1;
try
{
fd = getContentResolver().openFileDescriptor(i.getData(), "r").detachFd();
}
catch (IOException e)
{
Log.e("MyActivity::onCreate", "Exception caught: " + e.getMessage());
}
boolean ok = openFd(fd);
}
} // onCreate
private static native boolean openFd(int fd);
} // MyActivity
在C ++方面,我有类似的东西:
#include <QDebug>
#include <jni.h>
jboolean processInputFile(JNIEnv *env, jobject obj, jint fileDescriptor)
{
int fd = (int)fileDescriptor;
qDebug() << "processInputFile called: " << fd;
QFile f;
if (f.open(fd, QIODevice::ReadOnly, QFileDevice::AutoCloseHandle))
{
QFileInfo fi(f);
qDebug() << "Successfully opened the file " << f.fileName() << fi.absoluteFilePath() << fi.canonicalFilePath() << fi.fileName();
return true;
}
else
{
qDebug() << "Failed to open the file: " << f.errorString();
return false;
}
} // processInputFile
JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM* vm, void*)
{
qDebug() << "JNI_OnLoad got called";
JNIEnv* env;
if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
return -1;
}
jclass javaClass = env->FindClass("com/mycompany/mypackage/MyActivity");
if(!javaClass)
{
return JNI_ERR;
}
// Register methods with env->RegisterNatives
static JNINativeMethod methodsArray[] =
{
{"openFd", "(I)Z", (void*)processInputFile}
};
if(env->RegisterNatives(javaClass, methodsArray, sizeof(methodsArray) / sizeof(methodsArray[0])) < 0)
{
return JNI_ERR;
}
return JNI_VERSION_1_6;
}
int main(int argc, char *argv[])
{
qDebug() << "Calling main()";
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
qDebug() << "main arguments:";
for (int i = 0; i < argc; ++i)
qDebug() << argv[i];
// ...
}
调用C ++方法(processInputFile),但在调用main()函数之前发生,因此尚未创建应用程序对象。我无法处理传入的数据,因为此时处理类不存在。 所以我的问题是如何从android.app.Activity :: onCreate方法调用Qt应用程序实例的方法?
还有一件事:是否可以获取已打开文件的名称?有时意图的URI看起来像&#34; content:// downloads / my_downloads / 47&#34;我发现转换方法都没有用。 QFile和QFileInfo也不返回fd
的名称。例如,知道名称对于描述正在处理的项目是有用的,而47则没有实际意义。
答案 0 :(得分:0)
我想我找到了解决此问题的方法。这是一种解决方法,但应该可以正常工作。
在onCreate函数中存储filePath并从Qt主循环中调用它:
public class MyActivity extends org.qtproject.qt5.android.bindings.QtActivity
{ 字符串filePath;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
Intent i = getIntent();
String act = i.getAction();
filePath = "";
if (act != null) && act.compareTo(Intent.ACTION_VIEW) == 0)
{
filePath = i.getData();
}
} // onCreate
public String getFile()
{
return filePath;
}
} // MyActivity
然后在C ++调用的main()函数中
QAndroidJniObject javaFilePath = QtAndroid::androidActivity().callObjectMethod("getFile", "()Ljava/lang/String;");
QString filePath = javaFilePath.toString();
if (filePath != "") {
// do something
}
我刚刚尝试过,它似乎可以工作。处理所有案件可能需要更多的工作,但作为一个基本概念,它似乎可以胜任。
另一种可能性是使用here中所述的待定意图。它还包含将文件URI转换为真实路径的解决方案。