import javax.microedition.lcdui.*;
import javax.microedition.io.*;
import javax.wireless.messaging.*;
import java.io.IOException;
class PhoneInput
extends Form
implements ItemCommandListener, ItemStateListener, CommandListener, Runnable
{
private Display display;
private Command cmSend, cmCancel, cmExit;
private TextField tfPhone;
private SendSMS midlet;
private String msg;
private StringItem itemCancel, itemSend, itemExit;
private Alert al;
private String adr;
private String smsPort;
public PhoneInput(SendSMS midlet, Display display, String msg, String smsPort) {
super("Nomor HP");
this.display = display;
this.midlet = midlet;
this.msg = msg;
this.smsPort = smsPort;
cmSend = new Command("Kirim", Command.OK, 1);
cmCancel = new Command("Batal", Command.CANCEL, 1);
cmExit = new Command("Keluar", Command.EXIT, 1);
tfPhone = new TextField("Nomor HP", "", 30,TextField.PHONENUMBER);
this.append(tfPhone);
this.setCommandListener(this);
itemSend = new StringItem(null, "Kirim", Item.BUTTON);
itemSend.setDefaultCommand(cmSend);
itemSend.setItemCommandListener(this);
append(itemSend);
itemCancel = new StringItem(null, "Batal", Item.BUTTON);
itemCancel.setDefaultCommand(cmCancel);
itemCancel.setItemCommandListener(this);
append(itemCancel);
itemExit = new StringItem(null, "Keluar", Item.BUTTON);
itemExit.setDefaultCommand(cmExit);
itemExit.setItemCommandListener(this);
append(itemExit);
setItemStateListener(this);
}
public void itemStateChanged(Item item) {
}
public void commandAction(Command c, Item item) {
if (c == cmSend) {
if ((tfPhone.size() == 0)){
al = new Alert("Error", "Nomor HP Tidak Valid", null, AlertType.ERROR);
al.setTimeout(Alert.FOREVER);
display.setCurrent(al);
}else {
this.adr = "sms://" + tfPhone.getString() + ":" + smsPort;
new Thread(this).start();
}
}else if(c == cmCancel){
display.setCurrent(midlet.tbClip);
}else if(c == cmExit){
midlet.exitMIDlet();
}
}
public void commandAction(Command c, Displayable s) {
}
public void run() {
MessageConnection smsconn = null;;
try {
smsconn = (MessageConnection)Connector.open(adr);
TextMessage txtmessage = (TextMessage)smsconn.newMessage(
MessageConnection.TEXT_MESSAGE);
txtmessage.setAddress(adr);
txtmessage.setPayloadText(msg);
smsconn.send(txtmessage);
Alert alert = new Alert("Info", "Pesan Terkirim", null, AlertType.INFO);
alert.setTimeout(Alert.FOREVER);
display.setCurrent(alert);
} catch (Throwable t) {
System.out.println("error : " + t.toString());
Alert alert = new Alert("Error", "Pesan Gagal Terkirim", null, AlertType.ERROR);
alert.setTimeout(Alert.FOREVER);
display.setCurrent(alert);
}
if (smsconn != null) {
try {
smsconn.close();
} catch (IOException ioe) {
}
}
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
SendSMS.rar_personal
共11个文件
class:6个
java:2个
mf:1个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 172 浏览量
2022-09-19
16:48:51
上传
评论
收藏 10KB RAR 举报
温馨提示
this is code to implements J2ME in Mobile exspcially for sending wireless missage. this part help us like sms in mobile phone but we use emulator phone in our personal komputer
资源推荐
资源详情
资源评论
收起资源包目录
SendSMS.rar (11个子文件)
SendSMS
bin
SendSMS.jad 237B
MANIFEST.MF 172B
res
tmplib
tmpclasses
PhoneInput.class 4KB
Send.class 2KB
SendSMS.class 2KB
src
SendSMS.java 1KB
PhoneInput.java 3KB
classes
PhoneInput.class 4KB
Send.class 2KB
SendSMS.class 2KB
lib
project.properties 119B
共 11 条
- 1
资源评论
JaniceLu
- 粉丝: 95
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功