Android 客户端向服务器发送字符串。服务器将确认来自设备的连接,并且在正确的端口上,但就是这样。应该发生的是字符串打印在服务器控制台上。
作为参考,我创建了完全相同的客户端,没有在 android 应用程序中运行它并且它工作正常,所以这让我相信我在 android 方面遗漏了一些东西。任何人都可以提供解决此问题的建议。非常感谢。
客户端代码:
public class ObjectTestActivity extends Activity {
Button submit;
TextView tv;
private String name = "Hello Android";
private DataOutputStream dos;
private DataInputStream dis;
private final int PORT = 3000;
Button send;
InetAddress host;
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
send = (Button) findViewById(R.id.send);
tv = (TextView) findViewById(R.id.tv);
try{
host = InetAddress.getLocalHost();
Socket socket = new Socket("xx.xx.xxx.xxx", PORT);
dos = new DataOutputStream(socket.getOutputStream());
dis = new DataInputStream(socket.getInputStream());
}catch(UnknownHostException e){}
catch(IOException e){}
}
public void onClick(View view){
try{
dos.writeUTF(name);
dos.flush();
dis.close();
dos.close();
}catch(IOException e){}
}