首先,我是Android和Java的完全新手......我正在研究机器人,需要发送无线命令。在尝试了几种方法来完成这项工作并获得大量错误和时间调试之后(不了解示例代码中正在发生的事情的一半......)我发现最简单的通信方式是使用套接字。我按照http://android-er.blogspot.com/2011/01/simple-communication-using.html上的教程进行操作,效果很好!它完全符合预期,没有任何错误,令人欣慰,但不是我想要的。它从Android开始,向PC发送消息,然后等待来自PC的响应,然后结束,直到再次单击该按钮。我希望它朝着相反的方向前进。我试过切换代码,但一直强行关闭。我终于得到了它,所以你从android发送消息后,PC响应,然后android自动发送另一条消息,所以它总是在等待PC。它不能很好地工作,有时因按钮而崩溃。此外,它不再显示来自PC的消息!我试图将代码的重要部分放入一个线程,所以android永远不需要被触及它继续循环...我不知道为什么这不起作用,我收到以下错误:
11-24 13:21:11.492: E/AndroidRuntime(2656): android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
我的整个课程是一堂课:
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.Socket;
import java.net.UnknownHostException;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends Activity {
EditText textOut;
TextView textIn;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//textOut = (EditText)findViewById(R.id.textout);
//Button buttonSend = (Button)findViewById(R.id.send);
textIn = (TextView)findViewById(R.id.textin);
//buttonSend.setOnClickListener(buttonSendOnClickListener);
// start a loop
new Thread(new Runnable()
{
public void run()
{
while (true)
{
Socket socket = null;
DataOutputStream dataOutputStream = null;
DataInputStream dataInputStream = null;
try {
socket = new Socket("192.168.0.9", 8888);
dataOutputStream = new DataOutputStream(socket.getOutputStream());
dataOutputStream.writeUTF("Received!");
dataInputStream = new DataInputStream(socket.getInputStream());
textIn.setText(dataInputStream.readUTF());
} catch (UnknownHostException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
finally{
if (socket != null){
try {
socket.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (dataOutputStream != null){
try {
dataOutputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (dataInputStream != null){
try {
dataInputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
}
}).start();
}}
任何有关更好方法的帮助或建议都会很棒!谢谢!
答案 0 :(得分:0)
它无法正常工作,因为您尝试从后台线程更新用户界面,这是不可能的。
textIn.setText(dataInputStream.readUTF());
一种可能的解决方案是使用AsyncTask
,您可以在消息交换后轻松更新UI。
编辑:发现this answer非常好
答案 1 :(得分:0)
尝试将新主题更改为
runOnUiThread(new Runnable() {