Java 中的 USSD 菜单浏览器

发布于 2024-09-11 05:51:28 字数 148 浏览 1 评论 0原文

我想用 Java 创建一个简单的 USSD 菜单浏览器应用程序。我已经集成了 获得 USSD 平台的移动运营商之一。我已经成功实施了& 测试了苏联消息推送。但无法在java中开始使用USSN(菜单浏览器)。因此,请帮助我如何开始使用简单的 USSD 菜单浏览器应用程序。

I want to create a simple USSD Menu Browser Application in Java. I have integrated with
one of the Mobile operator to get the USSD Platform. And i have successfully implemented &
tested USSR message pushing. But not able to get started with USSN (Menu Browser) in java. So please help me how to get started with simple USSD menu browser application.

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

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

发布评论

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

评论(1

本王不退位尔等都是臣 2024-09-18 05:51:28

您可以使用带有 AT 命令的调制解调器。

您需要 3GPP TS 27.007(在 google 中搜索最新版本),命令名为 CUSD。

发送类似 AT+CUSD=1,AA180C3602,15 的内容,这意味着

您将收到如下回复:
+CUSD: 0,"00390030002C003000320020044004430431002E002004210443043F043504400410041E041D0020043E043F0440043504340435043B04 3804420020043D043E043C04350440043000200437043000200033002C00350440002F043400210020002A0035003000320023",72
,其中

  • 0 - 好的,
  • “...” - UTF-16 格式的文本,
  • 72 - 编码类型。

如果您的响应需要答案(菜单模式),您将在第一个参数中看到 1 而不是 0。只需发送预期的号码,您就会支持此会话(AT+CUSD=1,31,15 - 用于发送号码 1)。

You can use a modem with AT commands.

You need 3GPP TS 27.007 (search in google for latest version), command called CUSD.

Send something like this AT+CUSD=1,AA180C3602,15 which means

You'll will receive as a response like this:
+CUSD: 0,"00390030002C003000320020044004430431002E002004210443043F043504400410041E041D0020043E043F0440043504340435043B043804420020043D043E043C04350440043000200437043000200033002C00350440002F043400210020002A0035003000320023",72
, where

  • 0 - ok,
  • "..." - text in UTF-16 and
  • 72 - encoding type.

If your response requires an answer (menu mode), you will see 1 instead of 0 in first parameter. Just send expected number and you'll support this session (AT+CUSD=1,31,15 - for sending a number 1).

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