如何使用 J2ME 以编程方式将文件附加到 MMS 编辑器?
为了在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我从来没有听说过这种在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.
请参阅此链接 用于在 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.好吧,没有办法做到这一点,我做了一个解决方法,让用户使用真实播放器或设备上的任何默认播放器打开文件,
然后用户可以通过单击选项并按照本中提供的方式使用彩信发送文件默认播放器...
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
then the user can have access to send the file using MMS by clicking options and send as provided in this default player ...