使用自定义 APN 进行连接

发布于 2024-11-29 13:22:37 字数 98 浏览 0 评论 0原文

我正在开发一个应用程序,需要连接到只能通过特殊 APN 访问的服务器。因此,我想知道,是否可以指定一个 APN 仅用于单个连接(或应用程序),并使用它,即使 wifi 处于活动状态?

I am developing an application where I need to make a connection to a server which is only accessible through a special APN. Therefore, I want to know, is it possible to specify an APN to use for a single connection (or application) only, and use that, possibly even if wifi is active?

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

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

发布评论

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

评论(1

慈悲佛祖 2024-12-06 13:22:37

首先,您的应用程序可能需要 WRITE_APN_SETTINGS 权限能够更改 APN。您可以调出一个 UI 界面,让用户使用以下代码配置 APN:

Intent intent = new Intent(Settings.ACTION_APN_SETTINGS);
startActivity(intent);

另一方面,以编程方式更改设置有点困难。我建议您查看此类似问题的答案,以了解更多信息。

Firstly, your application will probably need the WRITE_APN_SETTINGS permission in order to be able to make APN changes. You can bring up a UI interface to have the user configure the APN with this code:

Intent intent = new Intent(Settings.ACTION_APN_SETTINGS);
startActivity(intent);

Changing the settings programatically, on the other hand, is a bit more difficult. I recommend you take a look at the answers to this similar question for more information.

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