我正在尝试连接android中的两个模拟器,一个被认为是服务器,一个被认为是客户端。 我使用文本视图和处理程序来发布客户端和服务器的状态。 我的客户端的问题是我可以创建套接字,通常我会在文本视图上发布一条错误消息。不仅如此,但是当我尝试按下客户端应用程序上的按钮时,我会强制关闭并且我不会我知道为什么我的客户端连接有不同的线程:)
有人可以告诉我我做错了吗?
这是我的代码:
public class screen1扩展了Activity {
private TextView clientState;
private String serverIpAddress="10.0.2.2";
public static final int ClientPort = 8080;
private boolean connected = false;
private Handler handler=new Handler();
Socket socket;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.screen1);
clientState = (TextView) findViewById(R.id.client_Status);
Button b = (Button)findViewById(R.id.mainMenu);
b.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
Intent i = new Intent(screen1.this, screen2.class);
startActivity(i);
}
});
Thread cThread=new Thread(new ClientThread());
cThread.start();
}
public class ClientThread implements Runnable{
public void run()
{
try
{
InetAddress serverAddr=InetAddress.getByName(serverIpAddress);
handler.post(new Runnable(){
public void run(){
clientState.setText(" try to connect!");
}
});
socket=new Socket(serverAddr,ClientPort);
handler.post(new Runnable(){
public void run(){
clientState.setText("Connected!");
}
});
}
catch(Exception e){
handler.post(new Runnable(){
public void run(){
clientState.setText("Error");
}
});
e.printStackTrace();
}
}
}
protected void onStop() {
super.onStop();
try {
// make sure you close the socket upon exiting
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
答案 0 :(得分:1)
我不擅长Android编程,但我发现你在代码中输入了一个无限循环:
while(true){
handler.post(new Runnable(){
public void run(){
clientState.setText("Connected!");
}
});
}