Java基础篇Socket网络编程中的应用实例(2)

//6、开始保存数据的操作
                                  String line=null;
                              while((line=brfu.readLine())!=null){
                           
                                      out.write(line+"\r\n");
                                    System.out.println(line);
                              }
                  //7、创建服务器端源:网络
                        PrintWriter outSer=new PrintWriter(s.getOutputStream(),true);
                          outSer.println("接受并保存完成!");

//8、关闭IO和网络资源
                                  out.close();
                                      s.close();
                                  ss.close();

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/f407b090a131ee017a7e20d91320c9c4.html