我想使用GSM调制解调器从我的PC发送SMS。我已经使用了,我可以发送短信。我想使用一个循环短信给许多用户,但它不工作。
我的错误:
sms.SerialConnectionException: Port currently owned by SMSConnector
at sms.SerialConnection.openConnection(SerialConnection.java:93)
at sms.Sender.send(Sender.java:42)
at sms.SMSClient.run(SMSClient.java:43)
at java.l
实际上,我想删除短信从收件箱,根据id,我正在使用以下代码
但是它显示了错误
我的代码:
Uri deleteUri = Uri.parse("content://sms/");
Cursor m_cCursor=context.getContentResolver().query(deleteUri, null, null, null, null);
int m_cnum=m_cCursor.getCount();
int id =m_cCursor.getInt(0);
int thread_id = m_cCursor.getInt(1);
错误是:
0 new
我的应用程序是用来发送和接收短信的SMS应用程序,但有以下区别:所有消息都通过蓝牙发送到您的PC上,我的另一个应用程序(在C#和WPF中)将允许用户编写和接收短信。
我的应用程序不被设置为默认的SMS应用程序,并且可以追溯到API 9。
当用户需要加载所有短信发送到PC时,我使用Cursor从内部短消息数据库中读取:
final Uri uriSMSInbox = Uri.parse("content://sms/inbox");
final Uri uriSMSSent = Uri.parse("content://sms/sent");
final Curs