欢迎来到天天文库
浏览记录
ID:47847782
大小:36.50 KB
页数:10页
时间:2019-11-26
《java和C之间的socket通信》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、java和C#之间SOCKET通信的问题一、服务器端(使用java编写)/***监听客户端的请求**/privatestaticvoidsocketService(){ExecutorServiceexec=Executors.newCachedThreadPool();try{ ServerSocketserver=newServerSocket(5678); inti=1; while(true) { MyLogManager.InfoLog(log,null,"等待连接第"+i+"个用户..."); try { Socketclient=server.accep
2、t(); MyLogManager.InfoLog(log,null,"第"+i+"个用户连接完成!"); exec.execute(newPDAServerWithDB(client)); } catch(ExceptionwhileExp) { Stringmsg="多线程处理连接失败!"; MyLogManager.ErrorLog(log,whileExp,msg); } i++; }}catch(IOExceptionioe){ Stringmsg="连接失败!"; MyLogManager.ErrorLog(log,ioe,msg)
3、; exec.shutdown();}}具体对于Socket信息的接受和发送在PDAServerWithDB类中处理信息处理分为:接收数据和发送数据服务端接收数据一律采用ReadLine()方法,这就要求客户端在发送请求时要有行结束符。服务器的接收发送数据的代码a)。构造输入输出流InputStreaminPut=s.getInputStream();OutputStreamoutPut=s.getOutputStream();PrintWriteroutWriter=newPrintWriter(outPut);BufferedReaderinputReader=newBufferedRe
4、ader(newInputStreamReader(inPut));b。接收客户端请求的代码Stringrequest=inputReader.readLine();request=request.trim();request=request.replaceAll("","");c。向客户端发送文本数据的代码outWriter.println(strInfo);outWriter.flush();d)。向客户端发送文件的代码//发送文件长度Filefile=newFile(filePath);byte[]outBytes=newbyte[1024];intcount=0;FileInput
5、StreamfileInput=newFileInputStream(file); ByteArrayOutputStreamow=newByteArrayOutputStream(); while((count=fileInput.read(outBytes))>0){MyLogManager.DebugLog(log,null,String.valueOf(count));ow.write(outBytes,0,count);} outPut.write(ow.toByteArray());//outWriter.print(ow);//这个在JAVA客户端时可以正常响应,而在C#
6、客户端中无法响应。//outWriter.flush();二、客户端(使用java和c#两个版本)1).发送请求信息(字符串格式)对于JAVA来说:直接使用PrintWrite类的println()方法即可。而对于C#来说:需要使用socket.Send(System.Text.Encoding.ASCII.GetBytes(msg+"r"));需要在请求信息msg后面加上一个行结束标志符。2).接收数据(文本或者文件)2-1).java客户端接收数据a)。java接收文本的代码示例:******代码示例*****log.info("开始连接服务器");InetAddressaddress=
7、InetAddress.getByName(AppConfig.IP);//193.100.100.143);SocketChannelsc=SocketChannel.open(newInetSocketAddress(address,AppConfig.PORT)); log.info("服务器连接成功");//连接成功初始化流InputStreaminputStream=Channels
此文档下载收益归作者所有