如何检测可用的 APN 设置?
我需要以某种方式访问我的 BlackBerry 应用程序中的 APN 设置。我的应用程序在 JDE 4.2.1 上运行。有什么帮助吗?
I need to access somehow APN settings in my BlackBerry application. My app is running on JDE 4.2.1. Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个名为
ServiceRecord
的类可以为您处理此问题。这是一个简短的片段。uid
和cid
取决于您尝试使用的服务(即 wap、wifi 或其他服务)。您可以使用以下命令检索所有 ServiceRecord 对象的完整列表。您可以使用此代码来确定您需要哪条记录以及其对应的
uid
和cid
是什么。请注意,这是只有在您拥有签名应用程序时才能访问的类之一。以下是
ServiceRecord
的 javadocs 链接。ServiceRecord JavaDocs
There's a class called
ServiceRecord
that can take care of this for you. Here's a short snippet.The
uid
andcid
are dependent on what service you are trying to use (i.e wap, wifi or something else). You can retrieve a complete list of all the ServiceRecord objects by using the following.You can use this code to figure out which record you need and what its corresponding
uid
andcid
are.Note that this is one of those classes that you only have accessed to if you have a signed application. Here's the link to the javadocs for
ServiceRecord
.ServiceRecord JavaDocs