如何使用 J2ME 以编程方式将文件附加到 MMS 编辑器?

发布于 2024-10-17 06:57:19 字数 290 浏览 3 评论 0原文

为了在 J2ME 中打开手机默认的彩信编辑器,我使用以下代码:

platformRequest("mms://");

如果我想指定号码,我会这样做:

platformRequest("mms://+123456789");

但我需要将一个文件附加到此消息(假设 E:\Videos\1.3gp ),而且我没有找到如何添加文件参数的地方。 因此,默认的彩信编辑器附有视频,用户必须输入号码和主题,然后按发送。

谢谢。

In order to open the phone default MMS Editor in J2ME I use this code:

platformRequest("mms://");

If I want to specify the number, I do it like that:

platformRequest("mms://+123456789");

But I need to attach a file to this message (let's say E:\Videos\1.3gp), and i don't find anywhere how to add the file parameter.
So the default MMS Editor has its video attached, and the user has to enter the number and subject and press send.

Thanks.

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

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

发布评论

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

评论(3

疾风者 2024-10-24 06:57:19

我从来没有听说过这种在J2ME中发送彩信的方法。这个在什么平台上运行?

执行此操作的正常方法是使用 JSR 205。

I've never heard of this method of sending MMS in J2ME. What platform does this work on?

The normal way of doing this is to use JSR 205.

执手闯天涯 2024-10-24 06:57:19

请参阅此链接 用于在 J2ME 中发送彩信。有关更多信息,请参阅此链接。不要使用 platformRequest() 发送彩信。

See this link for sending MMS in J2ME. And for your more information see this link also. Dont use platformRequest() for sending MMS.

乖乖哒 2024-10-24 06:57:19

好吧,没有办法做到这一点,我做了一个解决方法,让用户使用真实播放器或设备上的任何默认播放器打开文件,

Program.platformRequest("file:///....3gp");

然后用户可以通过单击选项并按照本中提供的方式使用彩信发送文件默认播放器...

Well no way to do this, i made a workaround by making the user open the file using real player or whatever default player on the device using

Program.platformRequest("file:///....3gp");

then the user can have access to send the file using MMS by clicking options and send as provided in this default player ...

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