如何在 Symbian 中获取 cellid

发布于 2024-12-02 04:11:58 字数 230 浏览 1 评论 0原文

我是 Symbian 的新手,目前我对 j2me 做了同样的事情,使用以下代码获取 cellid,就像这样。有没有办法获取将在Qt SDK中执行的设备ID?

if(out== null ||out.equals("null")|| out.equals(""))
                out = System.getProperty("com.nokia.mid.cellid");

I'm new to Symbian, currently I done the same with j2me with the following code for getting the cellid, like that. Is there any way to get the device id that will excute in Qt SDK?

if(out== null ||out.equals("null")|| out.equals(""))
                out = System.getProperty("com.nokia.mid.cellid");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

帅哥哥的热头脑 2024-12-09 04:11:58

您可以使用 QtMobility API 获取单元 ID:

#include <QSystemNetworkInfo>

QtMobility::QSystemNetworkInfo netInfo;
int cellId = netInfo.cellId();

记住将 Qt Mobility 添加到您的 .pro 文件:

CONFIG += mobility
MOBILITY += systeminfo

希望这有帮助!

此致

You can use the QtMobility APIs to get the cell ID:

#include <QSystemNetworkInfo>

QtMobility::QSystemNetworkInfo netInfo;
int cellId = netInfo.cellId();

Remember to add Qt Mobility to your .pro file:

CONFIG += mobility
MOBILITY += systeminfo

Hope this helps!

Best regards

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