使用Socket模拟一个简单的Webservice调用
【摘要】 webservice是对socket的一个封装,让远程调用调用变得更加简单,那么使用socket究竟有多么麻烦呢?来看看。 做一个简单的天气查询: 服务端:
public class SocketServer { public static void main(String[] args) { DataInputStream dataInputStream = n...
webservice是对socket的一个封装,让远程调用调用变得更加简单,那么使用socket究竟有多么麻烦呢?来看看。
做一个简单的天气查询:
服务端:
public class SocketServer { public static void main(String[] args) { DataInputStream dataInputStream = null; DataOutputStream dataOutputStream = null; try { // 启动socket服务端 ServerSocket serverSocket = new ServerSocket(8888); /** * 加上while(true),让服务端一直保持运行,负责当有一个客户端连接成功以后,服务端就停止运行了。 */ while (true) { // 监听客户端连接,accept()方法是阻塞方法,如果没有客户端连接,其后的代码不会执行 Socket socket = serverSocket.accept(); dataInputStream = new DataInputStream( socket.getInputStream()); dataOutputStream = new DataOutputStream( socket.getOutputStream()); //获得客户端传来的城市名称 String cityName = dataInputStream.readUTF(); System.out.println("from client..." + cityName); //查询天气并返回查询结果 String result = "晴天"; dataOutputStream.writeUTF(result); } } catch (IOException e) { e.printStackTrace(); }finally{ try { if(dataOutputStream!=null) dataOutputStream.close(); } catch (IOException e) { e.printStackTrace(); } try { if(dataInputStream!=null) dataInputStream.close(); } catch (IOException e) { e.printStackTrace(); } } }
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
客户端:
public class SocketClient { public static void main(String[] args) { Socket socket = null; DataOutputStream dataOutputStream = null; DataInputStream dataInputStream = null; try { //创建Socket连接 socket = new Socket("127.0.01", 8888); //得到输出流 dataOutputStream = new DataOutputStream(socket.getOutputStream()); //发送数据 dataOutputStream.writeUTF("海口"); //接收数据 dataInputStream = new DataInputStream(socket.getInputStream()); //得到输入流 String result = dataInputStream.readUTF(); System.out.println(result); } catch (IOException e) { e.printStackTrace(); }finally{ try { if(socket!=null) socket.close(); } catch (IOException e) { e.printStackTrace(); } try { if(dataInputStream!=null) dataInputStream.close(); } catch (IOException e) { e.printStackTrace(); } try { if(dataOutputStream!=null) dataOutputStream.close(); } catch (IOException e) { e.printStackTrace(); } } }
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
使用socket都是用流来传输数据,要防止编码问题,要打开流,关闭流,而如果使用webservice则完全不必考虑这些。
文章来源: wangsong.blog.csdn.net,作者:_江南一点雨,版权归原作者所有,如需转载,请联系作者。
原文链接:wangsong.blog.csdn.net/article/details/45665827
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)