开发过程中遇到的问题总结--qt for android

c++调用android代码过程中

1.Error occurred during initialization of VM
Unable to load native library: Can't find dependent libraries

 

参考1:

http://zhidao.baidu.com/question/148518835.html


参考2:http://stackoverflow.com/questions/15873213/cannot-load-jvm

There's a similar question in the discussion thread below the article that you linked.

In there, a user found that the solution is to make sure you have the path to your Java binaries in thePATH environment variable. For example:

PATH = "C:\Program Files\Java\jdk1.6.0_18\jre\bin\client";...
I had seen this and tried it. But I was not aware that changing path needed a reboot. After reboot programs works just fine. –   atoMerz  Apr 10 at 11:20
 
Actually your comment is a part of the answer! –   nabroyan  Jul 25 at 11:54

参考3:

http://stackoverflow.com/questions/11014893/tomcat-7-fail-to-start

http://stackoverflow.com/questions/15873213/cannot-load-jvm


总结:很是奇怪,在debug模式下总是出现上面的错误,但当切换到release模式下时,运行成功了!具体原因不详,待进一步测试。。。

(例子:http://files.cppblog.com/kongque/src_CJNIJava.zip     ,在vc6.0 的release模式下测试通过,debug模式下测试失败!)

你可能感兴趣的:(学习总结)