我希望我的 Android 手机连接到我的其他服务器。我不确定如何向服务器发送请求以接收响应。
这是我的代码
try
{
Socket connfd = new Socket("192.168.1.100", 5000 );
InputStream in = connfd.getInputStream();
OutputStream out = connfd.getOutputStream();
BufferedReader con = new BufferedReader(new InputStreamReader(System.in));
}catch(IOException e1){
e1.printStackTrace();
}