Java笔记7:最简单的网络请求Demo
一、服务器端
1 新建一个工程,建立一个名为MyRequest的工程。
2 FileàProject StructureàModulesà点击最右侧的“+”àLibraryàJava
找到Tomcat中的lib目录下的servlet-api.jar,添加进来
3 建立LoginServlet类,内容如下
- import java.io.IOException;
- import javax.servlet.ServletException;
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- public class LoginServlet extends HttpServlet {
- private static final long serialVersionUID = 1L;
- public LoginServlet() {
- super();
- }
- protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- this.doPost(request, response);
- }
- protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- String username = request.getParameter("username");
- String blog = request.getParameter("blog");
- System.out.println(username);
- System.out.println(blog);
- response.setContentType("text/plain; charset=UTF-8");
- response.setCharacterEncoding("UTF-8");
- response.getWriter().write("It is ok!");
- }
- }
4 编译LoginServlet.java,得到LoginServlet.class
5 在Tomcat中的webapps中添加MyHttpServer\WEB-INF\classes,并把上一步生成的LoginServlet.class拷进来
6 在WEB-INF目录下建立web.xml文件,内容如下:
- <?xml version="1.0" encoding="UTF-8"?>
- <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
- <display-name>OneHttpServer</display-name>
- <welcome-file-list>
- <welcome-file>LoginServlet</welcome-file>
- </welcome-file-list>
- <servlet>
- <description></description>
- <display-name>LoginServlet</display-name>
- <servlet-name>LoginServlet</servlet-name>
- <servlet-class>LoginServlet</servlet-class>
- </servlet>
- <servlet-mapping>
- <servlet-name>LoginServlet</servlet-name>
- <url-pattern>/LoginServlet</url-pattern>
- </servlet-mapping>
- </web-app>
7 执行Tomcat下的bin目录下的startup.bat来启动Tomcat
8 在浏览器中输入http://localhost:8080/MyHttpServer,若见到页面显示“It is ok!”则表示服务器端配置成功。
二、客户端
1 Get请求
在MyRequest工程新建HttpGetRequest类,内容如下:
- import java.io.BufferedReader;
- import java.io.InputStream;
- import java.io.InputStreamReader;
- import java.net.HttpURLConnection;
- import java.net.URL;
- import java.net.URLConnection;
- public class HttpGetRequest {
- /**
- * Main
- * @param args
- * @throws Exception
- */
- public static void main(String[] args) throws Exception {
- System.out.println(doGet());
- }
- /**
- * Get Request
- * @return
- * @throws Exception
- */
- public static String doGet() throws Exception {
- URL localURL = new URL("http://localhost:8080/MyHttpServer/");
- URLConnection connection = localURL.openConnection();
- HttpURLConnection httpURLConnection = (HttpURLConnection)connection;
- httpURLConnection.setRequestProperty("Accept-Charset", "utf-8");
- httpURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
- InputStream inputStream = null;
- InputStreamReader inputStreamReader = null;
- BufferedReader reader = null;
- StringBuffer resultBuffer = new StringBuffer();
- String tempLine = null;
- if (httpURLConnection.getResponseCode() >= 300) {
- throw new Exception("HTTP Request is not success, Response code is " + httpURLConnection.getResponseCode());
- }
- try {
- inputStream = httpURLConnection.getInputStream();
- inputStreamReader = new InputStreamReader(inputStream);
- reader = new BufferedReader(inputStreamReader);
- while ((tempLine = reader.readLine()) != null) {
- resultBuffer.append(tempLine);
- }
- } finally {
- if (reader != null) {
- reader.close();
- }
- if (inputStreamReader != null) {
- inputStreamReader.close();
- }
- if (inputStream != null) {
- inputStream.close();
- }
- }
- return resultBuffer.toString();
- }
- }
运行结果:
It is ok!
2 Post请求
新建HttpPostRequest.java类,内容如下:
- import java.io.BufferedReader;
- import java.io.InputStream;
- import java.io.InputStreamReader;
- import java.io.OutputStream;
- import java.io.OutputStreamWriter;
- import java.net.HttpURLConnection;
- import java.net.URL;
- import java.net.URLConnection;
- public class HttpPostRequest {
- /**
- * Main
- * @param args
- * @throws Exception
- */
- public static void main(String[] args) throws Exception {
- System.out.println(doPost());
- }
- /**
- * Post Request
- * @return
- * @throws Exception
- */
- public static String doPost() throws Exception {
- String parameterData = "username=nickhuang&blog=http://www.cnblogs.com/nick-huang/";
- URL localURL = new URL("http://localhost:8080/MyHttpServer/");
- URLConnection connection = localURL.openConnection();
- HttpURLConnection httpURLConnection = (HttpURLConnection)connection;
- httpURLConnection.setDoOutput(true);
- httpURLConnection.setRequestMethod("POST");
- httpURLConnection.setRequestProperty("Accept-Charset", "utf-8");
- httpURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
- httpURLConnection.setRequestProperty("Content-Length", String.valueOf(parameterData.length()));
- OutputStream outputStream = null;
- OutputStreamWriter outputStreamWriter = null;
- InputStream inputStream = null;
- InputStreamReader inputStreamReader = null;
- BufferedReader reader = null;
- StringBuffer resultBuffer = new StringBuffer();
- String tempLine = null;
- try {
- outputStream = httpURLConnection.getOutputStream();
- outputStreamWriter = new OutputStreamWriter(outputStream);
- outputStreamWriter.write(parameterData.toString());
- outputStreamWriter.flush();
- if (httpURLConnection.getResponseCode() >= 300) {
- throw new Exception("HTTP Request is not success, Response code is " + httpURLConnection.getResponseCode());
- }
- inputStream = httpURLConnection.getInputStream();
- inputStreamReader = new InputStreamReader(inputStream);
- reader = new BufferedReader(inputStreamReader);
- while ((tempLine = reader.readLine()) != null) {
- resultBuffer.append(tempLine);
- }
- } finally {
- if (outputStreamWriter != null) {
- outputStreamWriter.close();
- }
- if (outputStream != null) {
- outputStream.close();
- }
- if (reader != null) {
- reader.close();
- }
- if (inputStreamReader != null) {
- inputStreamReader.close();
- }
- if (inputStream != null) {
- inputStream.close();
- }
- }
- return resultBuffer.toString();
- }
- }
运行结果:
It is ok!
3 对Get和Post进行封装
封装类:
- import java.io.BufferedReader;
- import java.io.IOException;
- import java.io.InputStream;
- import java.io.InputStreamReader;
- import java.io.OutputStream;
- import java.io.OutputStreamWriter;
- import java.net.HttpURLConnection;
- import java.net.InetSocketAddress;
- import java.net.Proxy;
- import java.net.URL;
- import java.net.URLConnection;
- import java.util.Iterator;
- import java.util.Map;
- public class HttpRequestor {
- private String charset = "utf-8";
- private Integer connectTimeout = null;
- private Integer socketTimeout = null;
- private String proxyHost = null;
- private Integer proxyPort = null;
- /**
- * Do GET request
- * @param url
- * @return
- * @throws Exception
- * @throws IOException
- */
- public String doGet(String url) throws Exception {
- URL localURL = new URL(url);
- URLConnection connection = openConnection(localURL);
- HttpURLConnection httpURLConnection = (HttpURLConnection)connection;
- httpURLConnection.setRequestProperty("Accept-Charset", charset);
- httpURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
- InputStream inputStream = null;
- InputStreamReader inputStreamReader = null;
- BufferedReader reader = null;
- StringBuffer resultBuffer = new StringBuffer();
- String tempLine = null;
- if (httpURLConnection.getResponseCode() >= 300) {
- throw new Exception("HTTP Request is not success, Response code is " + httpURLConnection.getResponseCode());
- }
- try {
- inputStream = httpURLConnection.getInputStream();
- inputStreamReader = new InputStreamReader(inputStream);
- reader = new BufferedReader(inputStreamReader);
- while ((tempLine = reader.readLine()) != null) {
- resultBuffer.append(tempLine);
- }
- } finally {
- if (reader != null) {
- reader.close();
- }
- if (inputStreamReader != null) {
- inputStreamReader.close();
- }
- if (inputStream != null) {
- inputStream.close();
- }
- }
- return resultBuffer.toString();
- }
- /**
- * Do POST request
- * @param url
- * @param parameterMap
- * @return
- * @throws Exception
- */
- public String doPost(String url, Map parameterMap) throws Exception {
- /* Translate parameter map to parameter date string */
- StringBuffer parameterBuffer = new StringBuffer();
- if (parameterMap != null) {
- Iterator iterator = parameterMap.keySet().iterator();
- String key = null;
- String value = null;
- while (iterator.hasNext()) {
- key = (String)iterator.next();
- if (parameterMap.get(key) != null) {
- value = (String)parameterMap.get(key);
- } else {
- value = "";
- }
- parameterBuffer.append(key).append("=").append(value);
- if (iterator.hasNext()) {
- parameterBuffer.append("&");
- }
- }
- }
- System.out.println("POST parameter : " + parameterBuffer.toString());
- URL localURL = new URL(url);
- URLConnection connection = openConnection(localURL);
- HttpURLConnection httpURLConnection = (HttpURLConnection)connection;
- httpURLConnection.setDoOutput(true);
- httpURLConnection.setRequestMethod("POST");
- httpURLConnection.setRequestProperty("Accept-Charset", charset);
- httpURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
- httpURLConnection.setRequestProperty("Content-Length", String.valueOf(parameterBuffer.length()));
- OutputStream outputStream = null;
- OutputStreamWriter outputStreamWriter = null;
- InputStream inputStream = null;
- InputStreamReader inputStreamReader = null;
- BufferedReader reader = null;
- StringBuffer resultBuffer = new StringBuffer();
- String tempLine = null;
- try {
- outputStream = httpURLConnection.getOutputStream();
- outputStreamWriter = new OutputStreamWriter(outputStream);
- outputStreamWriter.write(parameterBuffer.toString());
- outputStreamWriter.flush();
- if (httpURLConnection.getResponseCode() >= 300) {
- throw new Exception("HTTP Request is not success, Response code is " + httpURLConnection.getResponseCode());
- }
- inputStream = httpURLConnection.getInputStream();
- inputStreamReader = new InputStreamReader(inputStream);
- reader = new BufferedReader(inputStreamReader);
- while ((tempLine = reader.readLine()) != null) {
- resultBuffer.append(tempLine);
- }
- } finally {
- if (outputStreamWriter != null) {
- outputStreamWriter.close();
- }
- if (outputStream != null) {
- outputStream.close();
- }
- if (reader != null) {
- reader.close();
- }
- if (inputStreamReader != null) {
- inputStreamReader.close();
- }
- if (inputStream != null) {
- inputStream.close();
- }
- }
- return resultBuffer.toString();
- }
- private URLConnection openConnection(URL localURL) throws IOException {
- URLConnection connection;
- if (proxyHost != null && proxyPort != null) {
- Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(proxyHost, proxyPort));
- connection = localURL.openConnection(proxy);
- } else {
- connection = localURL.openConnection();
- }
- return connection;
- }
- /**
- * Render request according setting
- * @param request
- */
- private void renderRequest(URLConnection connection) {
- if (connectTimeout != null) {
- connection.setConnectTimeout(connectTimeout);
- }
- if (socketTimeout != null) {
- connection.setReadTimeout(socketTimeout);
- }
- }
- /*
- * Getter & Setter
- */
- public Integer getConnectTimeout() {
- return connectTimeout;
- }
- public void setConnectTimeout(Integer connectTimeout) {
- this.connectTimeout = connectTimeout;
- }
- public Integer getSocketTimeout() {
- return socketTimeout;
- }
- public void setSocketTimeout(Integer socketTimeout) {
- this.socketTimeout = socketTimeout;
- }
- public String getProxyHost() {
- return proxyHost;
- }
- public void setProxyHost(String proxyHost) {
- this.proxyHost = proxyHost;
- }
- public Integer getProxyPort() {
- return proxyPort;
- }
- public void setProxyPort(Integer proxyPort) {
- this.proxyPort = proxyPort;
- }
- public String getCharset() {
- return charset;
- }
- public void setCharset(String charset) {
- this.charset = charset;
- }
- }
客户端测试代码:
- import java.util.HashMap;
- import java.util.Map;
- public class Call {
- public static void main(String[] args) throws Exception {
- /* Post Request */
- Map dataMap = new HashMap();
- dataMap.put("username", "Zheng");
- dataMap.put("blog", "IT");
- System.out.println(new HttpRequestor().doPost("http://localhost:8080/MyHttpServer/", dataMap));
- /* Get Request */
- System.out.println(new HttpRequestor().doGet("http://localhost:8080/MyHttpServer/"));
- }
- }
运行结果:
POST parameter : blog=IT&username=Zheng
It is ok!
It is ok!
Java笔记7:最简单的网络请求Demo的更多相关文章
- Xamarin.Android之封装个简单的网络请求类
一.前言 回忆到上篇 <Xamarin.Android再体验之简单的登录Demo> 做登录时,用的是GET的请求,还用的是同步, 于是现在将其简单的改写,做了个简单的封装,包含基于Http ...
- Android 最早使用的简单的网络请求
下面是最早从事android开发的时候写的网络请求的代码,简单高效,对于理解http请求有帮助.直接上代码,不用解释,因为非常简单. import java.io.BufferedReader; im ...
- iOS之ASIHttp简单的网络请求实现
描述: ASIHttpRequest是应用第三方库的方法,利用代码快,减少代码量,提高效率 准备工作: 一.导入第三方库ASIHttpRequest 二.会报很多的错,原因有两个,一个是要导入Xcod ...
- 学习笔记TF028:实现简单卷积网络
载入MNIST数据集.创建默认Interactive Session. 初始化函数,权重制造随机噪声打破完全对称.截断正态分布噪声,标准差设0.1.ReLU,偏置加小正值(0.1),避免死亡节点(de ...
- java编写的一段简单的网络爬虫demo代码
功能: 从网站上下载附件,并从页面中提取页面文章内容 关于NIO 在大多数情况下,Java 应用程序并非真的受着 I/O 的束缚.操作系统并非不能快速传送数据,让 Java 有事可做:相反,是 JVM ...
- Xamarin 简单的网络请求
//try //{ // var httpReq = (HttpWebRequest)HttpWebRequest.Create(new Uri(re ...
- python 学习笔记之手把手讲解如何使用原生的 urllib 发送网络请求
urllib.urlopen(url[,data[,proxies]]) : https://docs.python.org/2/library/urllib.html python 中默认自带的网络 ...
- Android 网络请求详解
我们知道大多数的 Android 应用程序都是通过和服务器进行交互来获取数据的.如果使用 HTTP 协议来发送和接收网络数据,就免不了使用 HttpURLConnection 和 HttpClient ...
- NSURLSession网络请求
个人感觉在网上很难找到很简单的网络请求.或许是我才疏学浅 , 所有就有了下面这一段 , 虽然都是代码 , 但是全有注释 . //1/获取文件访问路径 NSString *path=@"ht ...
随机推荐
- django+apache部署
参考:http://blog.csdn.net/rongyongfeikai2/article/details/13093555/ 参考:http://blog.csdn.net/yingmutong ...
- 单表扫描,MySQL索引选择不正确 并 详细解析OPTIMIZER_TRACE格式
一 表结构如下: 万行 CREATE TABLE t_audit_operate_log ( Fid bigint(16) AUTO_INCREMENT, Fcreate_time int(10 ...
- k8s的Dashboard
前面章节 Kubernetes 所有的操作我们都是通过命令行工具 kubectl 完成的.为了提供更丰富的用户体验,Kubernetes 还开发了一个基于 Web 的 Dashboard,用户可以用 ...
- java的maven项目(三)私服的搭建(windows版)
1 私服 nexus 安装nexus 启动服务 启动失败的解决方法: 登录nexus 用户名/密码 admin/admin123 仓库类型 Virtual 虚拟仓库 Proxy 代 ...
- hdu 5190(水题)
Go to movies Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Tota ...
- error: 'Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)'
http://stackoverflow.com/questions/11990708/error-cant-connect-to-local-mysql-server-through-socket- ...
- CF 1009A Game Shopping 【双指针/模拟】
Maxim wants to buy some games at the local game shop. There are n games in the shop, the i-th game c ...
- codeforces Round #440 B Maximum of Maximums of Minimums【思维/找规律】
B. Maximum of Maximums of Minimums time limit per test 1 second memory limit per test 256 megabytes ...
- 训练指南 UVALive - 3713 (2-SAT)
layout: post title: 训练指南 UVALive - 3713 (2-SAT) author: "luowentaoaa" catalog: true mathja ...
- Codeforces Round #406 (Div. 2) D. Legacy (线段树建图dij)
D. Legacy time limit per test 2 seconds memory limit per test 256 megabytes input standard input out ...