如何从消息文本框中获取文本?

发布于 2024-12-19 17:39:15 字数 105 浏览 1 评论 0原文

我正在 Netbeans 中开发移动应用程序,对于我的应用程序,我必须从写入消息框中获取文本,但我不知道如何从 Netbeans 的 SMS Composer 组件的消息标签中获取文本?请帮我..

I'm developing mobile application in netbeans and for my application i have to get text from write message box, but i don't know how to get text from message label of sms composer component of netbeans? please help me..

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

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

发布评论

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

评论(1

染墨丶若流云 2024-12-26 17:39:15

无法从类外部访问 SMSComposer 类中的私有变量 message,这违背了 java OOPS 概念。您可能希望 Java ME 支持反射,但请放心,它不受支持。

因此,解决您的问题的另一种方法是重新创建一个类似于 netbeans SMSComposer 类的类,并按照您喜欢的方式使用它。

您可能想浏览一下这些站点

  1. http://www.ibm.com/ developers/wireless/library/wi-p2pmsg/
  2. http://developers.sun.com/mobility/midp/articles/wma/
  3. http://j2mesamples.blogspot.com/2009/03/send-text-message-sms-using-wireless.html
  4. http://www.developer.nokia.com/info/sw.nokia.com/id/f7600470-fc56-4e1c-8c5c-4441c49cb9bf/Nokia_SMS_API_v0.9.zip.html

There is no way to gain access to private variable message in the class SMSComposer from outside of the class, it just defeats the java OOPS concepts. You might be wishing for Reflection support in Java ME but rest assure its NOT supported.

So another approach to your problem would be to recreate a class similar to netbeans SMSComposer class and use it the way you like.

You might want to glance through these sites

  1. http://www.ibm.com/developerworks/wireless/library/wi-p2pmsg/
  2. http://developers.sun.com/mobility/midp/articles/wma/
  3. http://j2mesamples.blogspot.com/2009/03/send-text-message-sms-using-wireless.html
  4. http://www.developer.nokia.com/info/sw.nokia.com/id/f7600470-fc56-4e1c-8c5c-4441c49cb9bf/Nokia_SMS_API_v0.9.zip.html
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文