如何避免 WTK 中的 API 访问警报
我通过在 WTK 设备上进行转换,在我的 WTK 2.5.1 中制作了一个自制的诺基亚 5800 模拟器。 在我的程序中,我使用 FileConnection。 当调用此 APi 时,会显示警报并阻止屏幕。由于我的“模拟器”不包含按钮,我可以确认访问,并且无法继续调试。 我怎样才能删除这个警报?我正在使用 NetBeans 6.9.1。 谢谢, 埃亚尔。
I have made a Home - Made Nokia 5800 emulator in my WTK 2.5.1, by converting on of the WTK's devices.
In my program, i'm using FileConnection.
When a call made to this APi, an alert been displayed and block the screen. Since my "emulator" contains no buttons i can confim the access, and can not continue with debuging.
How can I remove this alert? I'm using NetBeans 6.9.1.
Thanks,
Eyal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在访问
JSR-75
。因此,出于安全原因,需要获得访问该 API 的权限。查看此讨论并避免模拟器上的安全警报。但对于实时情况,您必须签署申请。You are accessing
JSR-75
. So its require permission to access that API for security reasons. Look at this discussion and avoid security alerts on emulators. But for real time, you have to signing the application.为了避免在 emulator.goto 无线工具包中出现此类警报,请选择编辑->首选项->默认模拟器->安全,将安全域设置为最大。
如果在真实设备中意味着您应该获得受信任方的签名。
To avoid such alert in emulator.goto wirless toolkit select edit->preference->default emulator->security, set the security domain as maximum.
If in real device means u should get signed from the trusted party.