如何检测可用的 APN 设置?

发布于 2024-08-05 14:00:21 字数 76 浏览 3 评论 0原文

我需要以某种方式访问​​我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜`诱少女 2024-08-12 14:00:21

有一个名为 ServiceRecord 的类可以为您处理此问题。这是一个简短的片段。

ServiceRecord record = ServiceBook.getSB().getRecordByUidAndCid(uid, cid);
String apn = record.getAPN();

uidcid 取决于您尝试使用的服务(即 wap、wifi 或其他服务)。您可以使用以下命令检索所有 ServiceRecord 对象的完整列表。

ServiceRecord[] records = ServiceBook.getSB().getRecords();
String uid = records[0].getUid();
String cid = records[0].getCid();

您可以使用此代码来确定您需要哪条记录以及其对应的 uidcid 是什么。

请注意,这是只有在您拥有签名应用程序时才能访问的类之一。以下是 ServiceRecord 的 javadocs 链接。

ServiceRecord JavaDocs

There's a class called ServiceRecord that can take care of this for you. Here's a short snippet.

ServiceRecord record = ServiceBook.getSB().getRecordByUidAndCid(uid, cid);
String apn = record.getAPN();

The uid and cid 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.

ServiceRecord[] records = ServiceBook.getSB().getRecords();
String uid = records[0].getUid();
String cid = records[0].getCid();

You can use this code to figure out which record you need and what its corresponding uid and cid 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文