Java Socket发送与接收HTTP消息简单实现

在上次Java Socket现实简单的HTTP服务我 们实现了简单的HTTP服务,它可以用来模拟HTTP服务,用它可以截获HTTP请求的原始码流,让我们很清楚的了解到我们向服务发的HTTP消息的结 构,对HTTP请求消息有个清晰的认识。这一节我想写了一个客户的程序,就是用来模拟浏览器,用来向服务器发送HTTP请求,最得要的是可以用它来显示服 务器发回来的HTTP响应消息的一般结构。

[java] view plaincopy

  1. import java.io.IOException;
  2. import java.io.InputStream;
  3. import java.io.OutputStreamWriter;
  4. import java.net.InetAddress;
  5. import java.net.Socket;
  6. import java.net.UnknownHostException;
  7. import java.util.ArrayList;
  8. /**
  9. * 一个简单的HTTP客户端,发送HTTP请求,模拟浏览器
  10. * 可打印服务器发送过来的HTTP消息
  11. */
  12. public class SimpleHttpClient {
  13. private static String encoding = "GBK";
  14. public static void main(String[] args) {
  15. try {
  16. Socket s = new Socket(InetAddress.getLocalHost(), 8080);
  17. OutputStreamWriter osw = new OutputStreamWriter(s.getOutputStream());
  18. StringBuffer sb = new StringBuffer();
  19. sb.append("GET /HttpStream/gb2312.jsp HTTP/1.1\r\n");
  20. sb.append("Host: localhost:8088\r\n");
  21. sb.append("Connection: Keep-Alive\r\n");
  22. //注,这是关键的关键,忘了这里让我搞了半个小时。这里一定要一个回车换行,表示消息头完,不然服务器会等待
  23. sb.append("\r\n");
  24. osw.write(sb.toString());
  25. osw.flush();
  26. //--输出服务器传回的消息的头信息
  27. InputStream is = s.getInputStream();
  28. String line = null;
  29. int contentLength = 0;//服务器发送回来的消息长度
  30. // 读取所有服务器发送过来的请求参数头部信息
  31. do {
  32. line = readLine(is, 0);
  33. //如果有Content-Length消息头时取出
  34. if (line.startsWith("Content-Length")) {
  35. contentLength = Integer.parseInt(line.split(":")[1].trim());
  36. }
  37. //打印请求部信息
  38. System.out.print(line);
  39. //如果遇到了一个单独的回车换行,则表示请求头结束
  40. } while (!line.equals("\r\n"));
  41. //--输消息的体
  42. System.out.print(readLine(is, contentLength));
  43. //关闭流
  44. is.close();
  45. } catch (UnknownHostException e) {
  46. e.printStackTrace();
  47. } catch (IOException e) {
  48. e.printStackTrace();
  49. }
  50. }
  51. /*
  52. * 这里我们自己模拟读取一行,因为如果使用API中的BufferedReader时,它是读取到一个回车换行后
  53. * 才返回,否则如果没有读取,则一直阻塞,直接服务器超时自动关闭为止,如果此时还使用BufferedReader
  54. * 来读时,因为读到最后一行时,最后一行后不会有回车换行符,所以就会等待。如果使用服务器发送回来的
  55. * 消息头里的Content-Length来截取消息体,这样就不会阻塞
  56. *
  57. * contentLe 参数 如果为0时,表示读头,读时我们还是一行一行的返回;如果不为0,表示读消息体,
  58. * 时我们根据消息体的长度来读完消息体后,客户端自动关闭流,这样不用先到服务器超时来关闭。
  59. */
  60. private static String readLine(InputStream is, int contentLe) throws IOException {
  61. ArrayList lineByteList = new ArrayList();
  62. byte readByte;
  63. int total = 0;
  64. if (contentLe != 0) {
  65. do {
  66. readByte = (byte) is.read();
  67. lineByteList.add(Byte.valueOf(readByte));
  68. total++;
  69. } while (total < contentLe);//消息体读还未读完
  70. } else {
  71. do {
  72. readByte = (byte) is.read();
  73. lineByteList.add(Byte.valueOf(readByte));
  74. } while (readByte != 10);
  75. }
  76. byte[] tmpByteArr = new byte[lineByteList.size()];
  77. for (int i = 0; i < lineByteList.size(); i++) {
  78. tmpByteArr[i] = ((Byte) lineByteList.get(i)).byteValue();
  79. }
  80. lineByteList.clear();
  81. return new String(tmpByteArr, encoding);
  82. }
  83. }

运行时访问一个页面打印如下:


HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Set-Cookie: JSESSIONID=61F659691475622CE7AB9C84E7AE7273; Path=/HttpStream
Content-Type: text/html;charset=GB2312
Content-Length: 81
Date: Mon, 09 Nov 2009 13:15:23 GMT

<html>  
    <body>  
  你好,这是一个简单的测试
    </body> 
</html>

下面来个文件下载的看怎么样?

请求的Jsp页面如下:

[java] view plaincopy

  1. <%@page import="java.io.InputStream" contentType="text/html; charset=GB2312"%>
  2. <%@page import="java.io.FileInputStream"%>
  3. <%@page import="java.io.OutputStream"%><html>
  4. <body> <br>
  5. <%
  6. try {
  7. InputStream is = new FileInputStream("e:/tmp/file2.txt");
  8. OutputStream os = response.getOutputStream();
  9. byte[] readContent = new byte[1024];
  10. int readCount = 0;
  11. while (is.available() > 0) {
  12. readCount = is.read(readContent);
  13. os.write(readContent, 0, readCount);
  14. }
  15. is.close();
  16. //注这里一定要关闭,不然的话抛异常,异常请见下面,原因就是response.getWriter()
  17. //与response.getOutputStream()不能同时使用,如果在这里关闭了,前面与后面向
  18. //out对象里写的数据就不会刷新到客户端了,只有向response.getOutputStream()写的
  19. //数据会输出到客户端。
  20. os.close();
  21. } catch (Exception e) {
  22. e.printStackTrace();
  23. }
  24. %>
  25. </body>
  26. </html>

如里上面Jsp下载页面中的 os.close() 注释掉的话会抛如下异常:

exception

org.apache.jasper.JasperException: getOutputStream() has already been called for this response
	org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:476)
	org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:383)
	org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:315)
	org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:803)

root cause

java.lang.IllegalStateException: getOutputStream() has already been called for this response
	org.apache.catalina.connector.Response.getWriter(Response.java:601)
	org.apache.catalina.connector.ResponseFacade.getWriter(ResponseFacade.java:196)
	org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:125)
	org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:118)
	org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:185)
	org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:116)
	org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:76)
	org.apache.jsp.gb2312_jsp._jspService(gb2312_jsp.java:78)
	org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
	org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:328)
	org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:315)
	org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:803)

以下是服务器经过编译生成的servlet类文件:

[java] view plaincopy

  1. package org.apache.jsp;
  2. import javax.servlet.*;
  3. import javax.servlet.http.*;
  4. import javax.servlet.jsp.*;
  5. import java.io.InputStream;
  6. import java.io.FileInputStream;
  7. import java.io.OutputStream;
  8. public final class gb2312_jsp extends org.apache.jasper.runtime.HttpJspBase
  9. implements org.apache.jasper.runtime.JspSourceDependent {
  10. private static java.util.List _jspx_dependants;
  11. public Object getDependants() {
  12. return _jspx_dependants;
  13. }
  14. public void _jspService(HttpServletRequest request, HttpServletResponse response)
  15. throws java.io.IOException, ServletException {
  16. JspFactory _jspxFactory = null;
  17. PageContext pageContext = null;
  18. HttpSession session = null;
  19. ServletContext application = null;
  20. ServletConfig config = null;
  21. JspWriter out = null;
  22. Object page = this;
  23. JspWriter _jspx_out = null;
  24. PageContext _jspx_page_context = null;
  25. try {
  26. _jspxFactory = JspFactory.getDefaultFactory();
  27. response.setContentType("text/html; charset=GB2312");
  28. pageContext = _jspxFactory.getPageContext(this, request, response,
  29. null, true, 8192, true);
  30. _jspx_page_context = pageContext;
  31. application = pageContext.getServletContext();
  32. config = pageContext.getServletConfig();
  33. session = pageContext.getSession();
  34. out = pageContext.getOut();
  35. _jspx_out = out;
  36. out.write("\r\n");
  37. out.write("\r\n");
  38. out.write("\r\n");
  39. out.write("<html>\r\n");
  40. out.write("\t<body> <br>\r\n");
  41. out.write("\t\t");
  42. try {
  43. InputStream is = new FileInputStream("e:/tmp/file2.txt");
  44. OutputStream os = response.getOutputStream();
  45. byte[] readContent = new byte[1024];
  46. int readCount = 0;
  47. while (is.available() > 0) {
  48. readCount = is.read(readContent);
  49. os.write(readContent, 0, readCount);
  50. }
  51. is.close();
  52. //注这里一定要关闭,不然的话抛异常,异常请见下面,原因就是response.getWriter()
  53. //与response.getOutputStream()不能同时使用,如果在这里关闭了,前面与后面向
  54. //out对象里写的数据就不会刷新到客户端了,只有向response.getOutputStream()写的
  55. //数据会输出到客户端。
  56. os.close();
  57. } catch (Exception e) {
  58. e.printStackTrace();
  59. }
  60. out.write("\r\n");
  61. out.write("\t</body>\r\n");
  62. out.write("</html>");
  63. } catch (Throwable t) {
  64. if (!(t instanceof SkipPageException)){
  65. out = _jspx_out;
  66. if (out != null && out.getBufferSize() != 0)
  67. out.clearBuffer();
  68. if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
  69. }
  70. } finally {
  71. if (_jspxFactory != null) _jspxFactory.releasePageContext(_jspx_page_context);
  72. }
  73. }
  74. }

最后是服务向客户端输出的码流如下:

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Set-Cookie: JSESSIONID=328097D70C625E8A9279FF9472319A5D; Path=/HttpStream
Content-Type: text/html;charset=GB2312
Content-Length: 60
Date: Mon, 09 Nov 2009 13:19:22 GMT

这是测试文件的内容:
中a [email protected]#$%^&*()_+{}|:\" <>?`-=[]\\;‘,./

原文:http://blog.csdn.net/a9529lty/article/details/7174265

时间: 2024-10-07 11:58:25

Java Socket发送与接收HTTP消息简单实现的相关文章

java socket 发送文件

客户端: package tt; import java.io.DataOutputStream; import java.io.File; import java.io.FileInputStream; import java.net.InetSocketAddress; import java.net.Socket; public class ClientTcpSend { public static void main(String[] args) { int length = 0; by

XMPP系列(四)---发送和接收文字消息,获取历史消息功能

今天开始做到最主要的功能发送和接收消息.获取本地历史数据. 先上到目前为止的效果图:              首先是要在XMPPFramework.h中引入数据存储模块: //聊天记录模块的导入 #import "XMPPMessageArchiving.h" #import "XMPPMessageArchivingCoreDataStorage.h" #import "XMPPMessageArchiving_Contact_CoreDataObje

socket发送和接收数据

1)sendBuf(),sendText(),sendStream() 几乎所有的通信控件都会提供上面的3个方法.首先看看SendBuf(). function TCustomWinSocket.SendBuf(var Buf; Count: Integer): Integer;var ErrorCode: Integer;begin Lock; try Result := 0; if not FConnected then Exit; Result := send(FSocket, Buf,

解决Springboot整合ActiveMQ发送和接收topic消息的问题

环境搭建 1.创建maven项目(jar) 2.pom.xml添加依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.4.0.RELEASE</version> </parent> <dependencies> &l

Android Socket 发送与接收数据问题: 发送后的数据接收到总是粘包

先说明一下粘包的概念: 发送时是两个单独的包.两次发送,但接收时两个包连在一起被一次接收到.在以前 WinCE 下 Socket 编程,确实也要处理粘包的问题,没想到在 Android 下也遇到了.首先想从发送端能否避免这样的问题,例如: (1) 调用强制刷数据完成发送的函数:(2) 设置发送超时.1 先试了调用 flush() 函数,但运行后现象依旧2 设置发送超时是 Windows 平台的做法,但在 Android 平台下是否有类似的设置呢?查看 Socket 类的实现代码:java.net

java——UDP发送和接收数据

package com.socket; import java.io.IOException; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; import java.net.SocketException; import java.net.UnknownHostException; /** * 需求: 通过UDP传输方式,将一段文字发送出去 * 1.建立ud

Linux系统下UDP发送和接收广播消息小例子

[cpp] view plaincopy // 发送端 #include <iostream> #include <stdio.h> #include <sys/socket.h> #include <unistd.h> #include <sys/types.h> #include <netdb.h> #include <netinet/in.h> #include <arpa/inet.h> #includ

Linux系统下UDP发送和接收广播消息小样例

[cpp] view plaincopy // 发送端 #include <iostream> #include <stdio.h> #include <sys/socket.h> #include <unistd.h> #include <sys/types.h> #include <netdb.h> #include <netinet/in.h> #include <arpa/inet.h> #includ

socket发送、接收信息

1 # 导入套接字包 2 import socket 3 4 5 def welcome(): 6 print("------欢迎进入UDP聊天器--------") 7 print("1.发送信息") 8 print("2.接收信息") 9 print("0.退出聊天器") 10 11 def send_msg(udp_socket): 12 dest_ip = input("请输入目标ip:") 13