我正在使用AT COMMANDS在Java中发送短信,我希望我的程序显示是否发送了所有消息。但我不知道如何查看SIM卡的发送项目。请帮忙!提前谢谢。
以下是我正在使用的一些代码:
String contact=rs.getString("contactNo");
String number = "AT+CMGW="+qu + contact + qu + "\r\n";
message =content+ cz + "\r";
outStream.write(number.getBytes());
Thread.sleep(5000);
outStream.write(message.getBytes());
Thread.sleep(5000);
System.out.println(contact);