English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Este artigo compartilha um exemplo de transmissão de bytes via Java socket, para referência, os detalhes são os seguintes
servidor lado server:
package com.yuan.socket; import java.io.*; import java.net.ServerSocket; import java.net.Socket; /** * Created by YUAN on 2016-09-17. */ public class TalkServer4Byte { private ServerSocket server; private int port = 5020; public TalkServer4Byte() { socket.close(); server = new ServerSocket(port); } } } InputStream os = new DataInputStream(System.in); System.out.println("Porta monitorada: " + port); Socket socket = null; while (true) { socket.close(); // esperando bloqueado, cria uma nova instância de conexão a cada solicitação recebida socket = server.accept(); System.out.println("Endereço do cliente conectado: " + socket.getRemoteSocketAddress()); // BufferedReader encapsulado em fluxo decorativo (recebe o fluxo do cliente) BufferedInputStream bis = new BufferedInputStream( socket.getInputStream()); DataInputStream dis = new DataInputStream(bis); byte[] bytes = new byte[1while ( // ler um byte de cada vez String ret = ""; while (dis.read(bytes) != -1) { ret += bytesToHexString(bytes) + " "; if (dis.available() == 0) { //um pedido doSomething(ret); } } } System.out.println(e.getMessage()); try { socket.close(); catch (IOException e) { } System.out.println(e.getMessage()); } } } } public static void doSomething(String ret) { System.out.println(ret); } public static String bytesToHexString(byte[] src) { StringBuilder stringBuilder = new StringBuilder(""); if (src == null || src.length <= 0) { return null; } for (int i = 0; i < src.length; i++) { int v = src[i] & 0xFF; String hv = Integer.toHexString(v); if (hv.length() < 2) { stringBuilder.append(0); } stringBuilder.append(hv); } return stringBuilder.toString(); } public static String BytesHexString(byte[] b) { String ret = ""; for (int i = 0; i < b.length; i++) { String hex = Integer.toHexString(b[i] & 0xFF); if (hex.length() == 1) { hex = '0' + hex; } ret += hex.toUpperCase(); } return ret; } public static void main(String[] args) { TalkServer4Byte server = new TalkServer4Byte(); server.talk(); } }
客户端client代码:
package com.yuan.socket; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.InetSocketAddress; import java.net.Socket; import java.net.SocketAddress; /** * Created by YUAN on 2016-09-17. */ public class TalkClient4Byte { private Socket socket; private SocketAddress address; public TalkClient4Byte() { socket.close(); socket = new Socket(); address = new InetSocketAddress("1270.0.0.1", 50200); public void talk() { 10usar DataInputStream para encapsular o fluxo de entrada } } } } InputStream os = new DataInputStream(System.in); socket.close(); //byte [] b = new byte[ ]; DataOutputStream dos = new DataOutputStream(socket.getOutputStream());1while ( != os.read(b)) { dos.write(b);-1 enviar para o cliente dos.flush(); // dos.close(); } e.printStackTrace(); finally { } } try { socket.close(); catch (IOException e) { } } } } public static void main(String[] args) { TalkClient4Byte client = new TalkClient4Byte(); client.talk(); } }
Isso é tudo o que há no artigo, esperamos que ajude na aprendizagem de todos e que todos apoiem o tutorial Yell.
Declaração: O conteúdo deste artigo é extraído da Internet, pertence ao respectivo proprietário, foi contribuído e carregado voluntariamente pelos usuários da Internet, o site não possui direitos de propriedade, não foi editado artificialmente e não assume responsabilidade legal relevante. Se você encontrar conteúdo suspeito de infringência de direitos autorais, por favor, envie e-mail para: notice#oldtoolbag.com (ao enviar e-mail, substitua # por @ para denunciar e forneça provas relevantes. Caso seja confirmado, o site deletará imediatamente o conteúdo suspeito de infringência.