如何触发 Symbian C++使用 J2ME API 的诺基亚手机 J2ME 应用程序中的应用程序?
有人知道如何使用 J2ME API 调用触发 Symbian C++ 应用程序吗?我有一个 J2ME 应用程序,需要在 Symbian C++ 中定制一个拍照应用程序。之所以分成两个应用程序,是因为J2ME对堆大小有限制,并且J2ME在拍摄照片后需要知道照片的路径。
非常感谢您的帮助。
问候, 肯尼
Anyone knows how to trigger a Symbian C++ application using any J2ME API call? I have a J2ME application that needs a customized photo taking application in Symbian C++. The reason for separating into two applications is because J2ME has a limit in heap size and the J2ME needs to know the path of photo after taking it.
Thanks a lot for your help.
Regards,
Kenny
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看诺基亚论坛上的 APIBridge:http://www.forum.nokia.com/info/sw.nokia.com/id/d697a64f-ddae-4937-8151-be157b542d26/ApiBridge.html
专为 MIDP 设计用于访问 Symbian C++ 环境中提供的服务的应用程序。
Take a look at APIBridge on Forum Nokia: http://www.forum.nokia.com/info/sw.nokia.com/id/d697a64f-ddae-4937-8151-be157b542d26/ApiBridge.html
Designed specifically for MIDP apps to access services provided in the Symbian C++ environment.
我认为没有 API 可以做到这一点。您可以尝试的一件事是让两个应用程序通过套接字接口进行通信。例如,Symbian 应用程序可以在本地主机上设置一个套接字服务器,并且 J2ME 应用程序将连接到它。然而,我不确定这在手机环境中是否可行。它还可能产生其他影响,例如必须签署您的申请。
I don't think there is an API for doing that. One thing you could try is to have your two applications communicate over a socket interface. For example the Symbian application could set up a socket server at localhost and the J2ME application would connect to it. I am not sure that this is possible in a phone's environment however. It could also have other implications as well, such as having to sign your applications.