当前位置: 代码迷 >> Android >> Android-50-使用Socket开展通信
  详细解决方案

Android-50-使用Socket开展通信

热度:93   发布时间:2016-04-28 00:42:52.0
Android---50---使用Socket进行通信

使用Socket进行通信:


通过Socket的构造方法连接指定的服务器:


两个构造方法:

Socket(InetAddress/String remoteAddress,int port):
创建连接到指定远程主机、远程端口的Socket,该构造器没有指定本地地址,本地端口,默认使用本地主机的默认IP
地址,默认使用系统动态指定的IP地址


Socket(InetAddress/String remoteAddress,int port,InetAddress localAddr,int localPort):
创建连接到指定远程主机、远程端口的Socket,并指定本地IP地址和本地端口号,适用于本地主机有多个IP地址的情形。



获取输入流和输出流:


获取输入流和输出流:


getInputStream:
返回该Socket对象对应的输入流

getOutputStream:
返回该Socket对象对应的输出流



添加权限:android.permission.INTERNET



protected void onCreate(Bundle savedInstanceState) {		super.onCreate(savedInstanceState);		setContentView(R.layout.activity_simple_client);		show = (EditText) findViewById(R.id.show);		new Thread() {			@Override			public void run() {				try {					Socket socket = new Socket("192.168.3.12", 30005);					BufferedReader br = new BufferedReader(							new InputStreamReader(socket.getInputStream()));					String line = br.readLine();					show.setText("来自服务器的数据:" + line);					br.close();					socket.close();				} catch (IOException e) {					// TODO Auto-generated catch block					e.printStackTrace();				}			}		}.start();	}




  相关解决方案