久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

一个http-request的源码及改进

發(fā)布時(shí)間:2024/9/30 编程问答 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 一个http-request的源码及改进 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

一個(gè)http-request的源碼及改進(jìn)

這個(gè)版本是基于Http-requesthttps://github.com/kevinsawicki/http-request進(jìn)行升級(jí)的http-request。

進(jìn)行了一下改變:

1.封裝了HttpResponse,讓request和response分離

2.設(shè)置了defaultTimeOut標(biāo)志,可以設(shè)置默認(rèn)超時(shí)時(shí)間。

3.executeHttpRequest進(jìn)行返回Response,使結(jié)構(gòu)更清晰。

使用方式:

HttpResponse httpResponse = HttpRequest.get("https://www.google.com").defaultTimeOut().executeHttpRequest();String httpRet = httpResponse.body();int code = httpResponse.code();

源碼如下:

/** Copyright (c) 2014 Kevin Sawicki <kevinsawicki@gmail.com>** Permission is hereby granted, free of charge, to any person obtaining a copy* of this software and associated documentation files (the "Software"), to* deal in the Software without restriction, including without limitation the* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or* sell copies of the Software, and to permit persons to whom the Software is* furnished to do so, subject to the following conditions:** The above copyright notice and this permission notice shall be included in* all copies or substantial portions of the Software.** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS* IN THE SOFTWARE.*/package com.github.kevinsawicki.http;import static java.net.HttpURLConnection.HTTP_BAD_REQUEST;import static java.net.HttpURLConnection.HTTP_CREATED;import static java.net.HttpURLConnection.HTTP_INTERNAL_ERROR;import static java.net.HttpURLConnection.HTTP_NO_CONTENT;import static java.net.HttpURLConnection.HTTP_NOT_FOUND;import static java.net.HttpURLConnection.HTTP_NOT_MODIFIED;import static java.net.HttpURLConnection.HTTP_OK;import static java.net.Proxy.Type.HTTP;import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.BufferedReader;import java.io.ByteArrayInputStream;import java.io.ByteArrayOutputStream;import java.io.Closeable;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.Flushable;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.OutputStream;import java.io.OutputStreamWriter;import java.io.PrintStream;import java.io.Reader;import java.io.UnsupportedEncodingException;import java.io.Writer;import java.net.HttpURLConnection;import java.net.InetSocketAddress;import java.net.MalformedURLException;import java.net.Proxy;import java.net.URI;import java.net.URISyntaxException;import java.net.URL;import java.net.URLEncoder;import java.nio.ByteBuffer;import java.nio.CharBuffer;import java.nio.charset.Charset;import java.nio.charset.CharsetEncoder;import java.security.AccessController;import java.security.GeneralSecurityException;import java.security.PrivilegedAction;import java.security.SecureRandom;import java.security.cert.X509Certificate;import java.util.ArrayList;import java.util.Arrays;import java.util.Collections;import java.util.Iterator;import java.util.LinkedHashMap;import java.util.List;import java.util.Map;import java.util.Map.Entry;import java.util.concurrent.Callable;import java.util.concurrent.atomic.AtomicInteger;import java.util.concurrent.atomic.AtomicReference;import java.util.zip.GZIPInputStream;import javax.net.ssl.HostnameVerifier;import javax.net.ssl.HttpsURLConnection;import javax.net.ssl.SSLContext;import javax.net.ssl.SSLSession;import javax.net.ssl.SSLSocketFactory;import javax.net.ssl.TrustManager;import javax.net.ssl.X509TrustManager;/*** A fluid interface for making HTTP requests using an underlying* {@link HttpURLConnection} (or sub-class).* <p>* Each instance supports making a single request and cannot be reused for* further requests.*/public class HttpRequest {/*** 'UTF-8' charset name*/public static final String CHARSET_UTF8 = "UTF-8";/*** 'application/x-www-form-urlencoded' content type header value*/public static final String CONTENT_TYPE_FORM = "application/x-www-form-urlencoded";/*** 'application/json' content type header value*/public static final String CONTENT_TYPE_JSON = "application/json";/*** 'gzip' encoding header value*/public static final String ENCODING_GZIP = "gzip";/*** 'Accept' header name*/public static final String HEADER_ACCEPT = "Accept";/*** 'Accept-Charset' header name*/public static final String HEADER_ACCEPT_CHARSET = "Accept-Charset";/*** 'Accept-Encoding' header name*/public static final String HEADER_ACCEPT_ENCODING = "Accept-Encoding";/*** 'Authorization' header name*/public static final String HEADER_AUTHORIZATION = "Authorization";/*** 'Cache-Control' header name*/public static final String HEADER_CACHE_CONTROL = "Cache-Control";/*** 'Content-Encoding' header name*/public static final String HEADER_CONTENT_ENCODING = "Content-Encoding";/*** 'Content-Length' header name*/public static final String HEADER_CONTENT_LENGTH = "Content-Length";/*** 'Content-Type' header name*/public static final String HEADER_CONTENT_TYPE = "Content-Type";/*** 'Date' header name*/public static final String HEADER_DATE = "Date";/*** 'ETag' header name*/public static final String HEADER_ETAG = "ETag";/*** 'Expires' header name*/public static final String HEADER_EXPIRES = "Expires";/*** 'If-None-Match' header name*/public static final String HEADER_IF_NONE_MATCH = "If-None-Match";/*** 'Last-Modified' header name*/public static final String HEADER_LAST_MODIFIED = "Last-Modified";/*** 'Location' header name*/public static final String HEADER_LOCATION = "Location";/*** 'Proxy-Authorization' header name*/public static final String HEADER_PROXY_AUTHORIZATION = "Proxy-Authorization";/*** 'Referer' header name*/public static final String HEADER_REFERER = "Referer";/*** 'Server' header name*/public static final String HEADER_SERVER = "Server";/*** 'User-Agent' header name*/public static final String HEADER_USER_AGENT = "User-Agent";/*** 'DELETE' request method*/public static final String METHOD_DELETE = "DELETE";/*** 'GET' request method*/public static final String METHOD_GET = "GET";/*** 'HEAD' request method*/public static final String METHOD_HEAD = "HEAD";/*** 'OPTIONS' options method*/public static final String METHOD_OPTIONS = "OPTIONS";/*** 'POST' request method*/public static final String METHOD_POST = "POST";/*** 'PUT' request method*/public static final String METHOD_PUT = "PUT";/*** 'TRACE' request method*/public static final String METHOD_TRACE = "TRACE";/*** 'charset' header value parameter*/public static final String PARAM_CHARSET = "charset";private static final String BOUNDARY = "00content0boundary00";private static final String CONTENT_TYPE_MULTIPART = "multipart/form-data; boundary="+ BOUNDARY;private static final String CRLF = "\r\n";private static final String[] EMPTY_STRINGS = new String[0];private static SSLSocketFactory TRUSTED_FACTORY;private static HostnameVerifier TRUSTED_VERIFIER;private static final int DEFAULT_READ_TIMEOUT = 5000;private static final int DEFAULT_CONNECT_TIMEOUT = 5000;private boolean defaultTimeOutFlag = false;private HttpResponse httpResponse;private static String getValidCharset(final String charset) {if (charset != null && charset.length() > 0)return charset;elsereturn CHARSET_UTF8;}private static SSLSocketFactory getTrustedFactory()throws HttpRequestException {if (TRUSTED_FACTORY == null) {final TrustManager[] trustAllCerts = new TrustManager[] { new X509TrustManager() {public X509Certificate[] getAcceptedIssuers() {return new X509Certificate[0];}public void checkClientTrusted(X509Certificate[] chain, String authType) {// Intentionally left blank}public void checkServerTrusted(X509Certificate[] chain, String authType) {// Intentionally left blank}} };try {SSLContext context = SSLContext.getInstance("TLS");context.init(null, trustAllCerts, new SecureRandom());TRUSTED_FACTORY = context.getSocketFactory();} catch (GeneralSecurityException e) {IOException ioException = new IOException("Security exception configuring SSL context");ioException.initCause(e);throw new HttpRequestException(ioException);}}return TRUSTED_FACTORY;}private static HostnameVerifier getTrustedVerifier() {if (TRUSTED_VERIFIER == null)TRUSTED_VERIFIER = new HostnameVerifier() {public boolean verify(String hostname, SSLSession session) {return true;}};return TRUSTED_VERIFIER;}private static StringBuilder addPathSeparator(final String baseUrl,final StringBuilder result) {// Add trailing slash if the base URL doesn't have any path segments.//// The following test is checking for the last slash not being part of// the protocol to host separator: '://'.if (baseUrl.indexOf(':') + 2 == baseUrl.lastIndexOf('/'))result.append('/');return result;}private static StringBuilder addParamPrefix(final String baseUrl,final StringBuilder result) {// Add '?' if missing and add '&' if params already exist in base urlfinal int queryStart = baseUrl.indexOf('?');final int lastChar = result.length() - 1;if (queryStart == -1)result.append('?');else if (queryStart < lastChar && baseUrl.charAt(lastChar) != '&')result.append('&');return result;}private static StringBuilder addParam(final Object key, Object value,final StringBuilder result) {if (value != null && value.getClass().isArray())value = arrayToList(value);if (value instanceof Iterable<?>) {Iterator<?> iterator = ((Iterable<?>) value).iterator();while (iterator.hasNext()) {result.append(key);result.append("[]=");Object element = iterator.next();if (element != null)result.append(element);if (iterator.hasNext())result.append("&");}} else {result.append(key);result.append("=");if (value != null)result.append(value);}return result;}/*** Creates {@link HttpURLConnection HTTP connections} for* {@link URL urls}.*/public interface ConnectionFactory {/*** Open an {@link HttpURLConnection} for the specified {@link URL}.** @throws IOException*/HttpURLConnection create(URL url) throws IOException;/*** Open an {@link HttpURLConnection} for the specified {@link URL}* and {@link Proxy}.** @throws IOException*/HttpURLConnection create(URL url, Proxy proxy) throws IOException;/*** A {@link ConnectionFactory} which uses the built-in* {@link URL#openConnection()}*/ConnectionFactory DEFAULT = new ConnectionFactory() {public HttpURLConnection create(URL url) throws IOException {return (HttpURLConnection) url.openConnection();}public HttpURLConnection create(URL url, Proxy proxy) throws IOException {return (HttpURLConnection) url.openConnection(proxy);}};}private static ConnectionFactory CONNECTION_FACTORY = ConnectionFactory.DEFAULT;/*** Specify the {@link ConnectionFactory} used to create new requests.*/public static void setConnectionFactory(final ConnectionFactory connectionFactory) {if (connectionFactory == null)CONNECTION_FACTORY = ConnectionFactory.DEFAULT;elseCONNECTION_FACTORY = connectionFactory;}/*** Callback interface for reporting upload progress for a request.*/public interface UploadProgress {/*** Callback invoked as data is uploaded by the request.** @param uploaded The number of bytes already uploaded* @param total The total number of bytes that will be uploaded or -1 if* the length is unknown.*/void onUpload(long uploaded, long total);UploadProgress DEFAULT = new UploadProgress() {public void onUpload(long uploaded, long total) {}};}/*** <p>* Encodes and decodes to and from Base64 notation.* </p>* <p>* I am placing this code in the Public Domain. Do with it as you will. This* software comes with no guarantees or warranties but with plenty of* well-wishing instead! Please visit <a* href="http://iharder.net/base64">http://iharder.net/base64</a> periodically* to check for updates or to contribute improvements.* </p>** @author Robert Harder* @author rob@iharder.net* @version 2.3.7*/public static class Base64 {/** The equals sign (=) as a byte. */private final static byte EQUALS_SIGN = (byte) '=';/** Preferred encoding. */private final static String PREFERRED_ENCODING = "US-ASCII";/** The 64 valid Base64 values. */private final static byte[] _STANDARD_ALPHABET = { (byte) 'A', (byte) 'B',(byte) 'C', (byte) 'D', (byte) 'E', (byte) 'F', (byte) 'G', (byte) 'H',(byte) 'I', (byte) 'J', (byte) 'K', (byte) 'L', (byte) 'M', (byte) 'N',(byte) 'O', (byte) 'P', (byte) 'Q', (byte) 'R', (byte) 'S', (byte) 'T',(byte) 'U', (byte) 'V', (byte) 'W', (byte) 'X', (byte) 'Y', (byte) 'Z',(byte) 'a', (byte) 'b', (byte) 'c', (byte) 'd', (byte) 'e', (byte) 'f',(byte) 'g', (byte) 'h', (byte) 'i', (byte) 'j', (byte) 'k', (byte) 'l',(byte) 'm', (byte) 'n', (byte) 'o', (byte) 'p', (byte) 'q', (byte) 'r',(byte) 's', (byte) 't', (byte) 'u', (byte) 'v', (byte) 'w', (byte) 'x',(byte) 'y', (byte) 'z', (byte) '0', (byte) '1', (byte) '2', (byte) '3',(byte) '4', (byte) '5', (byte) '6', (byte) '7', (byte) '8', (byte) '9',(byte) '+', (byte) '/' };/** Defeats instantiation. */private Base64() {}/*** <p>* Encodes up to three bytes of the array <var>source</var> and writes the* resulting four Base64 bytes to <var>destination</var>. The source and* destination arrays can be manipulated anywhere along their length by* specifying <var>srcOffset</var> and <var>destOffset</var>. This method* does not check to make sure your arrays are large enough to accomodate* <var>srcOffset</var> + 3 for the <var>source</var> array or* <var>destOffset</var> + 4 for the <var>destination</var> array. The* actual number of significant bytes in your array is given by* <var>numSigBytes</var>.* </p>* <p>* This is the lowest level of the encoding methods with all possible* parameters.* </p>** @param source* the array to convert* @param srcOffset* the index where conversion begins* @param numSigBytes* the number of significant bytes in your array* @param destination* the array to hold the conversion* @param destOffset* the index where output will be put* @return the <var>destination</var> array* @since 1.3*/private static byte[] encode3to4(byte[] source, int srcOffset,int numSigBytes, byte[] destination, int destOffset) {byte[] ALPHABET = _STANDARD_ALPHABET;int inBuff = (numSigBytes > 0 ? ((source[srcOffset] << 24) >>> 8) : 0)| (numSigBytes > 1 ? ((source[srcOffset + 1] << 24) >>> 16) : 0)| (numSigBytes > 2 ? ((source[srcOffset + 2] << 24) >>> 24) : 0);switch (numSigBytes) {case 3:destination[destOffset] = ALPHABET[(inBuff >>> 18)];destination[destOffset + 1] = ALPHABET[(inBuff >>> 12) & 0x3f];destination[destOffset + 2] = ALPHABET[(inBuff >>> 6) & 0x3f];destination[destOffset + 3] = ALPHABET[(inBuff) & 0x3f];return destination;case 2:destination[destOffset] = ALPHABET[(inBuff >>> 18)];destination[destOffset + 1] = ALPHABET[(inBuff >>> 12) & 0x3f];destination[destOffset + 2] = ALPHABET[(inBuff >>> 6) & 0x3f];destination[destOffset + 3] = EQUALS_SIGN;return destination;case 1:destination[destOffset] = ALPHABET[(inBuff >>> 18)];destination[destOffset + 1] = ALPHABET[(inBuff >>> 12) & 0x3f];destination[destOffset + 2] = EQUALS_SIGN;destination[destOffset + 3] = EQUALS_SIGN;return destination;default:return destination;}}/*** Encode string as a byte array in Base64 annotation.** @param string* @return The Base64-encoded data as a string*/public static String encode(String string) {byte[] bytes;try {bytes = string.getBytes(PREFERRED_ENCODING);} catch (UnsupportedEncodingException e) {bytes = string.getBytes();}return encodeBytes(bytes);}/*** Encodes a byte array into Base64 notation.** @param source* The data to convert* @return The Base64-encoded data as a String* @throws NullPointerException* if source array is null* @throws IllegalArgumentException* if source array, offset, or length are invalid* @since 2.0*/public static String encodeBytes(byte[] source) {return encodeBytes(source, 0, source.length);}/*** Encodes a byte array into Base64 notation.** @param source* The data to convert* @param off* Offset in array where conversion should begin* @param len* Length of data to convert* @return The Base64-encoded data as a String* @throws NullPointerException* if source array is null* @throws IllegalArgumentException* if source array, offset, or length are invalid* @since 2.0*/public static String encodeBytes(byte[] source, int off, int len) {byte[] encoded = encodeBytesToBytes(source, off, len);try {return new String(encoded, PREFERRED_ENCODING);} catch (UnsupportedEncodingException uue) {return new String(encoded);}}/*** Similar to {@link #encodeBytes(byte[], int, int)} but returns a byte* array instead of instantiating a String. This is more efficient if you're* working with I/O streams and have large data sets to encode.*** @param source* The data to convert* @param off* Offset in array where conversion should begin* @param len* Length of data to convert* @return The Base64-encoded data as a String if there is an error* @throws NullPointerException* if source array is null* @throws IllegalArgumentException* if source array, offset, or length are invalid* @since 2.3.1*/public static byte[] encodeBytesToBytes(byte[] source, int off, int len) {if (source == null)throw new NullPointerException("Cannot serialize a null array.");if (off < 0)throw new IllegalArgumentException("Cannot have negative offset: "+ off);if (len < 0)throw new IllegalArgumentException("Cannot have length offset: " + len);if (off + len > source.length)throw new IllegalArgumentException(String.format("Cannot have offset of %d and length of %d with array of length %d",off, len, source.length));// Bytes needed for actual encodingint encLen = (len / 3) * 4 + (len % 3 > 0 ? 4 : 0);byte[] outBuff = new byte[encLen];int d = 0;int e = 0;int len2 = len - 2;for (; d < len2; d += 3, e += 4)encode3to4(source, d + off, 3, outBuff, e);if (d < len) {encode3to4(source, d + off, len - d, outBuff, e);e += 4;}if (e <= outBuff.length - 1) {byte[] finalOut = new byte[e];System.arraycopy(outBuff, 0, finalOut, 0, e);return finalOut;} elsereturn outBuff;}}/*** HTTP request exception whose cause is always an {@link IOException}*/public static class HttpRequestException extends RuntimeException {private static final long serialVersionUID = -1170466989781746231L;/*** Create a new HttpRequestException with the given cause** @param cause*/public HttpRequestException(final IOException cause) {super(cause);}/*** Get {@link IOException} that triggered this request exception** @return {@link IOException} cause*/@Overridepublic IOException getCause() {return (IOException) super.getCause();}}/*** Operation that handles executing a callback once complete and handling* nested exceptions** @param <V>*/protected static abstract class Operation<V> implements Callable<V> {/*** Run operation** @return result* @throws HttpRequestException* @throws IOException*/protected abstract V run() throws HttpRequestException, IOException;/*** Operation complete callback** @throws IOException*/protected abstract void done() throws IOException;public V call() throws HttpRequestException {boolean thrown = false;try {return run();} catch (HttpRequestException e) {thrown = true;throw e;} catch (IOException e) {thrown = true;throw new HttpRequestException(e);} finally {try {done();} catch (IOException e) {if (!thrown)throw new HttpRequestException(e);}}}}/*** Class that ensures a {@link Closeable} gets closed with proper exception* handling.** @param <V>*/protected static abstract class CloseOperation<V> extends Operation<V> {private final Closeable closeable;private final boolean ignoreCloseExceptions;/*** Create closer for operation** @param closeable* @param ignoreCloseExceptions*/protected CloseOperation(final Closeable closeable,final boolean ignoreCloseExceptions) {this.closeable = closeable;this.ignoreCloseExceptions = ignoreCloseExceptions;}@Overrideprotected void done() throws IOException {if (closeable instanceof Flushable)((Flushable) closeable).flush();if (ignoreCloseExceptions)try {closeable.close();} catch (IOException e) {// Ignored}elsecloseable.close();}}/*** Class that and ensures a {@link Flushable} gets flushed with proper* exception handling.** @param <V>*/protected static abstract class FlushOperation<V> extends Operation<V> {private final Flushable flushable;/*** Create flush operation** @param flushable*/protected FlushOperation(final Flushable flushable) {this.flushable = flushable;}@Overrideprotected void done() throws IOException {flushable.flush();}}/*** Request output stream*/public static class RequestOutputStream extends BufferedOutputStream {private final CharsetEncoder encoder;/*** Create request output stream** @param stream* @param charset* @param bufferSize*/public RequestOutputStream(final OutputStream stream, final String charset,final int bufferSize) {super(stream, bufferSize);encoder = Charset.forName(getValidCharset(charset)).newEncoder();}/*** Write string to stream** @param value* @return this stream* @throws IOException*/public RequestOutputStream write(final String value) throws IOException {final ByteBuffer bytes = encoder.encode(CharBuffer.wrap(value));super.write(bytes.array(), 0, bytes.limit());return this;}}/*** Represents array of any type as list of objects so we can easily iterate over it* @param array of elements* @return list with the same elements*/private static List<Object> arrayToList(final Object array) {if (array instanceof Object[])return Arrays.asList((Object[]) array);List<Object> result = new ArrayList<Object>();// Arrays of the primitive types can't be cast to array of Object, so this:if (array instanceof int[])for (int value : (int[]) array) result.add(value);else if (array instanceof boolean[])for (boolean value : (boolean[]) array) result.add(value);else if (array instanceof long[])for (long value : (long[]) array) result.add(value);else if (array instanceof float[])for (float value : (float[]) array) result.add(value);else if (array instanceof double[])for (double value : (double[]) array) result.add(value);else if (array instanceof short[])for (short value : (short[]) array) result.add(value);else if (array instanceof byte[])for (byte value : (byte[]) array) result.add(value);else if (array instanceof char[])for (char value : (char[]) array) result.add(value);return result;}/*** Encode the given URL as an ASCII {@link String}* <p>* This method ensures the path and query segments of the URL are properly* encoded such as ' ' characters being encoded to '%20' or any UTF-8* characters that are non-ASCII. No encoding of URLs is done by default by* the {@link HttpRequest} constructors and so if URL encoding is needed this* method should be called before calling the {@link HttpRequest} constructor.** @param url* @return encoded URL* @throws HttpRequestException*/public static String encode(final CharSequence url)throws HttpRequestException {URL parsed;try {parsed = new URL(url.toString());} catch (IOException e) {throw new HttpRequestException(e);}String host = parsed.getHost();int port = parsed.getPort();if (port != -1)host = host + ':' + Integer.toString(port);try {String encoded = new URI(parsed.getProtocol(), host, parsed.getPath(),parsed.getQuery(), null).toASCIIString();int paramsStart = encoded.indexOf('?');if (paramsStart > 0 && paramsStart + 1 < encoded.length())encoded = encoded.substring(0, paramsStart + 1)+ encoded.substring(paramsStart + 1).replace("+", "%2B");return encoded;} catch (URISyntaxException e) {IOException io = new IOException("Parsing URI failed");io.initCause(e);throw new HttpRequestException(io);}}/*** Append given map as query parameters to the base URL* <p>* Each map entry's key will be a parameter name and the value's* {@link Object#toString()} will be the parameter value.** @param url* @param params* @return URL with appended query params*/public static String append(final CharSequence url, final Map<?, ?> params) {final String baseUrl = url.toString();if (params == null || params.isEmpty())return baseUrl;final StringBuilder result = new StringBuilder(baseUrl);addPathSeparator(baseUrl, result);addParamPrefix(baseUrl, result);Entry<?, ?> entry;Iterator<?> iterator = params.entrySet().iterator();entry = (Entry<?, ?>) iterator.next();addParam(entry.getKey().toString(), entry.getValue(), result);while (iterator.hasNext()) {result.append('&');entry = (Entry<?, ?>) iterator.next();addParam(entry.getKey().toString(), entry.getValue(), result);}return result.toString();}/*** Append given name/value pairs as query parameters to the base URL* <p>* The params argument is interpreted as a sequence of name/value pairs so the* given number of params must be divisible by 2.** @param url* @param params* name/value pairs* @return URL with appended query params*/public static String append(final CharSequence url, final Object... params) {final String baseUrl = url.toString();if (params == null || params.length == 0)return baseUrl;if (params.length % 2 != 0)throw new IllegalArgumentException("Must specify an even number of parameter names/values");final StringBuilder result = new StringBuilder(baseUrl);addPathSeparator(baseUrl, result);addParamPrefix(baseUrl, result);addParam(params[0], params[1], result);for (int i = 2; i < params.length; i += 2) {result.append('&');addParam(params[i], params[i + 1], result);}return result.toString();}/*** Start a 'GET' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest get(final CharSequence url)throws HttpRequestException {return new HttpRequest(url, METHOD_GET);}/*** Start a 'GET' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest get(final URL url) throws HttpRequestException {return new HttpRequest(url, METHOD_GET);}/*** Start a 'GET' request to the given URL along with the query params** @param baseUrl* @param params* The query parameters to include as part of the baseUrl* @param encode* true to encode the full URL** @see #append(CharSequence, Map)* @see #encode(CharSequence)** @return request*/public static HttpRequest get(final CharSequence baseUrl,final Map<?, ?> params, final boolean encode) {String url = append(baseUrl, params);return get(encode ? encode(url) : url);}/*** Start a 'GET' request to the given URL along with the query params** @param baseUrl* @param encode* true to encode the full URL* @param params* the name/value query parameter pairs to include as part of the* baseUrl** @see #append(CharSequence, Object...)* @see #encode(CharSequence)** @return request*/public static HttpRequest get(final CharSequence baseUrl,final boolean encode, final Object... params) {String url = append(baseUrl, params);return get(encode ? encode(url) : url);}/*** Start a 'POST' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest post(final CharSequence url)throws HttpRequestException {return new HttpRequest(url, METHOD_POST);}/*** Start a 'POST' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest post(final URL url) throws HttpRequestException {return new HttpRequest(url, METHOD_POST);}/*** Start a 'POST' request to the given URL along with the query params** @param baseUrl* @param params* the query parameters to include as part of the baseUrl* @param encode* true to encode the full URL** @see #append(CharSequence, Map)* @see #encode(CharSequence)** @return request*/public static HttpRequest post(final CharSequence baseUrl,final Map<?, ?> params, final boolean encode) {String url = append(baseUrl, params);return post(encode ? encode(url) : url);}/*** Start a 'POST' request to the given URL along with the query params** @param baseUrl* @param encode* true to encode the full URL* @param params* the name/value query parameter pairs to include as part of the* baseUrl** @see #append(CharSequence, Object...)* @see #encode(CharSequence)** @return request*/public static HttpRequest post(final CharSequence baseUrl,final boolean encode, final Object... params) {String url = append(baseUrl, params);return post(encode ? encode(url) : url);}/*** Start a 'PUT' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest put(final CharSequence url)throws HttpRequestException {return new HttpRequest(url, METHOD_PUT);}/*** Start a 'PUT' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest put(final URL url) throws HttpRequestException {return new HttpRequest(url, METHOD_PUT);}/*** Start a 'PUT' request to the given URL along with the query params** @param baseUrl* @param params* the query parameters to include as part of the baseUrl* @param encode* true to encode the full URL** @see #append(CharSequence, Map)* @see #encode(CharSequence)** @return request*/public static HttpRequest put(final CharSequence baseUrl,final Map<?, ?> params, final boolean encode) {String url = append(baseUrl, params);return put(encode ? encode(url) : url);}/*** Start a 'PUT' request to the given URL along with the query params** @param baseUrl* @param encode* true to encode the full URL* @param params* the name/value query parameter pairs to include as part of the* baseUrl** @see #append(CharSequence, Object...)* @see #encode(CharSequence)** @return request*/public static HttpRequest put(final CharSequence baseUrl,final boolean encode, final Object... params) {String url = append(baseUrl, params);return put(encode ? encode(url) : url);}/*** Start a 'DELETE' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest delete(final CharSequence url)throws HttpRequestException {return new HttpRequest(url, METHOD_DELETE);}/*** Start a 'DELETE' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest delete(final URL url) throws HttpRequestException {return new HttpRequest(url, METHOD_DELETE);}/*** Start a 'DELETE' request to the given URL along with the query params** @param baseUrl* @param params* The query parameters to include as part of the baseUrl* @param encode* true to encode the full URL** @see #append(CharSequence, Map)* @see #encode(CharSequence)** @return request*/public static HttpRequest delete(final CharSequence baseUrl,final Map<?, ?> params, final boolean encode) {String url = append(baseUrl, params);return delete(encode ? encode(url) : url);}/*** Start a 'DELETE' request to the given URL along with the query params** @param baseUrl* @param encode* true to encode the full URL* @param params* the name/value query parameter pairs to include as part of the* baseUrl** @see #append(CharSequence, Object...)* @see #encode(CharSequence)** @return request*/public static HttpRequest delete(final CharSequence baseUrl,final boolean encode, final Object... params) {String url = append(baseUrl, params);return delete(encode ? encode(url) : url);}/*** Start a 'HEAD' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest head(final CharSequence url)throws HttpRequestException {return new HttpRequest(url, METHOD_HEAD);}/*** Start a 'HEAD' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest head(final URL url) throws HttpRequestException {return new HttpRequest(url, METHOD_HEAD);}/*** Start a 'HEAD' request to the given URL along with the query params** @param baseUrl* @param params* The query parameters to include as part of the baseUrl* @param encode* true to encode the full URL** @see #append(CharSequence, Map)* @see #encode(CharSequence)** @return request*/public static HttpRequest head(final CharSequence baseUrl,final Map<?, ?> params, final boolean encode) {String url = append(baseUrl, params);return head(encode ? encode(url) : url);}/*** Start a 'GET' request to the given URL along with the query params** @param baseUrl* @param encode* true to encode the full URL* @param params* the name/value query parameter pairs to include as part of the* baseUrl** @see #append(CharSequence, Object...)* @see #encode(CharSequence)** @return request*/public static HttpRequest head(final CharSequence baseUrl,final boolean encode, final Object... params) {String url = append(baseUrl, params);return head(encode ? encode(url) : url);}/*** Start an 'OPTIONS' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest options(final CharSequence url)throws HttpRequestException {return new HttpRequest(url, METHOD_OPTIONS);}/*** Start an 'OPTIONS' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest options(final URL url) throws HttpRequestException {return new HttpRequest(url, METHOD_OPTIONS);}/*** Start a 'TRACE' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest trace(final CharSequence url)throws HttpRequestException {return new HttpRequest(url, METHOD_TRACE);}/*** Start a 'TRACE' request to the given URL** @param url* @return request* @throws HttpRequestException*/public static HttpRequest trace(final URL url) throws HttpRequestException {return new HttpRequest(url, METHOD_TRACE);}/*** Set the 'http.keepAlive' property to the given value.* <p>* This setting will apply to all requests.** @param keepAlive*/public static void keepAlive(final boolean keepAlive) {setProperty("http.keepAlive", Boolean.toString(keepAlive));}/*** Set the 'http.maxConnections' property to the given value.* <p>* This setting will apply to all requests.** @param maxConnections*/public static void maxConnections(final int maxConnections) {setProperty("http.maxConnections", Integer.toString(maxConnections));}/*** Set the 'http.proxyHost' and 'https.proxyHost' properties to the given host* value.* <p>* This setting will apply to all requests.** @param host*/public static void proxyHost(final String host) {setProperty("http.proxyHost", host);setProperty("https.proxyHost", host);}/*** Set the 'http.proxyPort' and 'https.proxyPort' properties to the given port* number.* <p>* This setting will apply to all requests.** @param port*/public static void proxyPort(final int port) {final String portValue = Integer.toString(port);setProperty("http.proxyPort", portValue);setProperty("https.proxyPort", portValue);}/*** Set the 'http.nonProxyHosts' property to the given host values.* <p>* Hosts will be separated by a '|' character.* <p>* This setting will apply to all requests.** @param hosts*/public static void nonProxyHosts(final String... hosts) {if (hosts != null && hosts.length > 0) {StringBuilder separated = new StringBuilder();int last = hosts.length - 1;for (int i = 0; i < last; i++)separated.append(hosts[i]).append('|');separated.append(hosts[last]);setProperty("http.nonProxyHosts", separated.toString());} elsesetProperty("http.nonProxyHosts", null);}/*** Set property to given value.* <p>* Specifying a null value will cause the property to be cleared** @param name* @param value* @return previous value*/private static String setProperty(final String name, final String value) {final PrivilegedAction<String> action;if (value != null)action = new PrivilegedAction<String>() {public String run() {return System.setProperty(name, value);}};elseaction = new PrivilegedAction<String>() {public String run() {return System.clearProperty(name);}};return AccessController.doPrivileged(action);}private HttpURLConnection connection = null;private final URL url;private final String requestMethod;private RequestOutputStream output;private boolean multipart;private boolean form;private boolean ignoreCloseExceptions = true;private boolean uncompress = false;private int bufferSize = 8192;private long totalSize = -1;private long totalWritten = 0;private String httpProxyHost;private int httpProxyPort;private UploadProgress progress = UploadProgress.DEFAULT;/*** Create HTTP connection wrapper** @param url Remote resource URL.* @param method HTTP request method (e.g., "GET", "POST").* @throws HttpRequestException*/public HttpRequest(final CharSequence url, final String method)throws HttpRequestException {try {this.url = new URL(url.toString());} catch (MalformedURLException e) {throw new HttpRequestException(e);}this.requestMethod = method;}/*** Create HTTP connection wrapper** @param url Remote resource URL.* @param method HTTP request method (e.g., "GET", "POST").* @throws HttpRequestException*/public HttpRequest(final URL url, final String method)throws HttpRequestException {this.url = url;this.requestMethod = method;}private Proxy createProxy() {return new Proxy(HTTP, new InetSocketAddress(httpProxyHost, httpProxyPort));}private HttpURLConnection createConnection() {try {final HttpURLConnection connection;if (httpProxyHost != null)connection = CONNECTION_FACTORY.create(url, createProxy());elseconnection = CONNECTION_FACTORY.create(url);connection.setRequestMethod(requestMethod);return connection;} catch (IOException e) {throw new HttpRequestException(e);}}@Overridepublic String toString() {return method() + ' ' + url();}/*** Get underlying connection** @return connection*/public HttpURLConnection getConnection() {if (connection == null)connection = createConnection();return connection;}/*** Set whether or not to ignore exceptions that occur from calling* {@link Closeable#close()}* <p>* The default value of this setting is <code>true</code>** @param ignore* @return this request*/public HttpRequest ignoreCloseExceptions(final boolean ignore) {ignoreCloseExceptions = ignore;return this;}/*** Get whether or not exceptions thrown by {@link Closeable#close()} are* ignored** @return true if ignoring, false if throwing*/public boolean ignoreCloseExceptions() {return ignoreCloseExceptions;}/*** Disconnect the connection** @return this request*/public HttpRequest disconnect() {getConnection().disconnect();return this;}/*** Set chunked streaming mode to the given size** @param size* @return this request*/public HttpRequest chunk(final int size) {getConnection().setChunkedStreamingMode(size);return this;}/*** Set the size used when buffering and copying between streams* <p>* This size is also used for send and receive buffers created for both char* and byte arrays* <p>* The default buffer size is 8,192 bytes** @param size* @return this request*/public HttpRequest bufferSize(final int size) {if (size < 1)throw new IllegalArgumentException("Size must be greater than zero");bufferSize = size;return this;}/*** Get the configured buffer size* <p>* The default buffer size is 8,192 bytes** @return buffer size*/public int bufferSize() {return bufferSize;}/*** Set whether or not the response body should be automatically uncompressed* when read from.* <p>* This will only affect requests that have the 'Content-Encoding' response* header set to 'gzip'.* <p>* This causes all receive methods to use a {@link GZIPInputStream} when* applicable so that higher level streams and readers can read the data* uncompressed.* <p>* Setting this option does not cause any request headers to be set* automatically so {@link #acceptGzipEncoding()} should be used in* conjunction with this setting to tell the server to gzip the response.** @param uncompress* @return this request*/public HttpRequest uncompress(final boolean uncompress) {this.uncompress = uncompress;return this;}/*** Set read timeout on connection to given value** @param timeout* @return this request*/public HttpRequest readTimeout(final int timeout) {getConnection().setReadTimeout(timeout);return this;}/*** Set connect timeout on connection to given value** @param timeout* @return this request*/public HttpRequest connectTimeout(final int timeout) {getConnection().setConnectTimeout(timeout);return this;}/*** Set header name to given value** @param name* @param value* @return this request*/public HttpRequest header(final String name, final String value) {getConnection().setRequestProperty(name, value);return this;}/*** Set header name to given value** @param name* @param value* @return this request*/public HttpRequest header(final String name, final Number value) {return header(name, value != null ? value.toString() : null);}/*** Set all headers found in given map where the keys are the header names and* the values are the header values** @param headers* @return this request*/public HttpRequest headers(final Map<String, String> headers) {if (!headers.isEmpty())for (Entry<String, String> header : headers.entrySet())header(header);return this;}/*** Set header to have given entry's key as the name and value as the value** @param header* @return this request*/public HttpRequest header(final Entry<String, String> header) {return header(header.getKey(), header.getValue());}/*** Get parameter values from header value** @param header* @return parameter value or null if none*/protected Map<String, String> getParams(final String header) {if (header == null || header.length() == 0)return Collections.emptyMap();final int headerLength = header.length();int start = header.indexOf(';') + 1;if (start == 0 || start == headerLength)return Collections.emptyMap();int end = header.indexOf(';', start);if (end == -1)end = headerLength;Map<String, String> params = new LinkedHashMap<String, String>();while (start < end) {int nameEnd = header.indexOf('=', start);if (nameEnd != -1 && nameEnd < end) {String name = header.substring(start, nameEnd).trim();if (name.length() > 0) {String value = header.substring(nameEnd + 1, end).trim();int length = value.length();if (length != 0)if (length > 2 && '"' == value.charAt(0)&& '"' == value.charAt(length - 1))params.put(name, value.substring(1, length - 1));elseparams.put(name, value);}}start = end + 1;end = header.indexOf(';', start);if (end == -1)end = headerLength;}return params;}/*** Get parameter value from header value** @param value* @param paramName* @return parameter value or null if none*/protected String getParam(final String value, final String paramName) {if (value == null || value.length() == 0)return null;final int length = value.length();int start = value.indexOf(';') + 1;if (start == 0 || start == length)return null;int end = value.indexOf(';', start);if (end == -1)end = length;while (start < end) {int nameEnd = value.indexOf('=', start);if (nameEnd != -1 && nameEnd < end&& paramName.equals(value.substring(start, nameEnd).trim())) {String paramValue = value.substring(nameEnd + 1, end).trim();int valueLength = paramValue.length();if (valueLength != 0)if (valueLength > 2 && '"' == paramValue.charAt(0)&& '"' == paramValue.charAt(valueLength - 1))return paramValue.substring(1, valueLength - 1);elsereturn paramValue;}start = end + 1;end = value.indexOf(';', start);if (end == -1)end = length;}return null;}/*** Set the 'User-Agent' header to given value** @param userAgent* @return this request*/public HttpRequest userAgent(final String userAgent) {return header(HEADER_USER_AGENT, userAgent);}/*** Set the 'Referer' header to given value** @param referer* @return this request*/public HttpRequest referer(final String referer) {return header(HEADER_REFERER, referer);}/*** Set value of {@link HttpURLConnection#setUseCaches(boolean)}** @param useCaches* @return this request*/public HttpRequest useCaches(final boolean useCaches) {getConnection().setUseCaches(useCaches);return this;}/*** Set the 'Accept-Encoding' header to given value** @param acceptEncoding* @return this request*/public HttpRequest acceptEncoding(final String acceptEncoding) {return header(HEADER_ACCEPT_ENCODING, acceptEncoding);}/*** Set the 'Accept-Encoding' header to 'gzip'** @see #uncompress(boolean)* @return this request*/public HttpRequest acceptGzipEncoding() {return acceptEncoding(ENCODING_GZIP);}/*** Set the 'Accept-Charset' header to given value** @param acceptCharset* @return this request*/public HttpRequest acceptCharset(final String acceptCharset) {return header(HEADER_ACCEPT_CHARSET, acceptCharset);}/*** Set the 'Authorization' header to given value** @param authorization* @return this request*/public HttpRequest authorization(final String authorization) {return header(HEADER_AUTHORIZATION, authorization);}/*** Set the 'Proxy-Authorization' header to given value** @param proxyAuthorization* @return this request*/public HttpRequest proxyAuthorization(final String proxyAuthorization) {return header(HEADER_PROXY_AUTHORIZATION, proxyAuthorization);}/*** Set the 'Authorization' header to given values in Basic authentication* format** @param name* @param password* @return this request*/public HttpRequest basic(final String name, final String password) {return authorization("Basic " + Base64.encode(name + ':' + password));}/*** Set the 'Proxy-Authorization' header to given values in Basic authentication* format** @param name* @param password* @return this request*/public HttpRequest proxyBasic(final String name, final String password) {return proxyAuthorization("Basic " + Base64.encode(name + ':' + password));}/*** Set the 'If-Modified-Since' request header to the given value** @param ifModifiedSince* @return this request*/public HttpRequest ifModifiedSince(final long ifModifiedSince) {getConnection().setIfModifiedSince(ifModifiedSince);return this;}/*** Set the 'If-None-Match' request header to the given value** @param ifNoneMatch* @return this request*/public HttpRequest ifNoneMatch(final String ifNoneMatch) {return header(HEADER_IF_NONE_MATCH, ifNoneMatch);}/*** Set the 'Content-Type' request header to the given value** @param contentType* @return this request*/public HttpRequest contentType(final String contentType) {return contentType(contentType, null);}/*** Set the 'Content-Type' request header to the given value and charset** @param contentType* @param charset* @return this request*/public HttpRequest contentType(final String contentType, final String charset) {if (charset != null && charset.length() > 0) {final String separator = "; " + PARAM_CHARSET + '=';return header(HEADER_CONTENT_TYPE, contentType + separator + charset);} elsereturn header(HEADER_CONTENT_TYPE, contentType);}/*** Set the 'Content-Length' request header to the given value** @param contentLength* @return this request*/public HttpRequest contentLength(final String contentLength) {return contentLength(Integer.parseInt(contentLength));}/*** Set the 'Content-Length' request header to the given value** @param contentLength* @return this request*/public HttpRequest contentLength(final int contentLength) {getConnection().setFixedLengthStreamingMode(contentLength);return this;}/*** Set the 'Accept' header to given value** @param accept* @return this request*/public HttpRequest accept(final String accept) {return header(HEADER_ACCEPT, accept);}/*** Set the 'Accept' header to 'application/json'** @return this request*/public HttpRequest acceptJson() {return accept(CONTENT_TYPE_JSON);}/*** Copy from input stream to output stream** @param input* @param output* @return this request* @throws IOException*/protected HttpResponse copy(final InputStream input, final OutputStream output)throws IOException {return new CloseOperation<HttpResponse>(input, ignoreCloseExceptions) {@Overridepublic HttpResponse run() throws IOException {final byte[] buffer = new byte[bufferSize];int read;while ((read = input.read(buffer)) != -1) {output.write(buffer, 0, read);totalWritten += read;progress.onUpload(totalWritten, totalSize);}return HttpRequest.this.httpResponse;}}.call();}/*** Copy from reader to writer** @param input* @param output* @return this request* @throws IOException*/protected HttpRequest copy(final Reader input, final Writer output)throws IOException {return new CloseOperation<HttpRequest>(input, ignoreCloseExceptions) {@Overridepublic HttpRequest run() throws IOException {final char[] buffer = new char[bufferSize];int read;while ((read = input.read(buffer)) != -1) {output.write(buffer, 0, read);totalWritten += read;progress.onUpload(totalWritten, -1);}return HttpRequest.this;}}.call();}/*** Set the UploadProgress callback for this request** @param callback* @return this request*/public HttpRequest progress(final UploadProgress callback) {if (callback == null)progress = UploadProgress.DEFAULT;elseprogress = callback;return this;}private HttpRequest incrementTotalSize(final long size) {if (totalSize == -1)totalSize = 0;totalSize += size;return this;}/*** Open output stream** @return this request* @throws IOException*/protected HttpRequest openOutput() throws IOException {if (output != null)return this;getConnection().setDoOutput(true);final String charset = getParam(getConnection().getRequestProperty(HEADER_CONTENT_TYPE), PARAM_CHARSET);output = new RequestOutputStream(getConnection().getOutputStream(), charset,bufferSize);return this;}/*** Start part of a multipart** @return this request* @throws IOException*/protected HttpRequest startPart() throws IOException {if (!multipart) {multipart = true;contentType(CONTENT_TYPE_MULTIPART).openOutput();output.write("--" + BOUNDARY + CRLF);} elseoutput.write(CRLF + "--" + BOUNDARY + CRLF);return this;}/*** Write part header** @param name* @param filename* @return this request* @throws IOException*/protected HttpRequest writePartHeader(final String name, final String filename)throws IOException {return writePartHeader(name, filename, null);}/*** Write part header** @param name* @param filename* @param contentType* @return this request* @throws IOException*/protected HttpRequest writePartHeader(final String name,final String filename, final String contentType) throws IOException {final StringBuilder partBuffer = new StringBuilder();partBuffer.append("form-data; name=\"").append(name);if (filename != null)partBuffer.append("\"; filename=\"").append(filename);partBuffer.append('"');partHeader("Content-Disposition", partBuffer.toString());if (contentType != null)partHeader(HEADER_CONTENT_TYPE, contentType);return send(CRLF);}/*** Write part of a multipart request to the request body** @param name* @param part* @return this request*/public HttpRequest part(final String name, final String part) {return part(name, null, part);}/*** Write part of a multipart request to the request body** @param name* @param filename* @param part* @return this request* @throws HttpRequestException*/public HttpRequest part(final String name, final String filename,final String part) throws HttpRequestException {return part(name, filename, null, part);}/*** Write part of a multipart request to the request body** @param name* @param filename* @param contentType* value of the Content-Type part header* @param part* @return this request* @throws HttpRequestException*/public HttpRequest part(final String name, final String filename,final String contentType, final String part) throws HttpRequestException {try {startPart();writePartHeader(name, filename, contentType);output.write(part);} catch (IOException e) {throw new HttpRequestException(e);}return this;}/*** Write part of a multipart request to the request body** @param name* @param part* @return this request* @throws HttpRequestException*/public HttpRequest part(final String name, final Number part)throws HttpRequestException {return part(name, null, part);}/*** Write part of a multipart request to the request body** @param name* @param filename* @param part* @return this request* @throws HttpRequestException*/public HttpRequest part(final String name, final String filename,final Number part) throws HttpRequestException {return part(name, filename, part != null ? part.toString() : null);}/*** Write part of a multipart request to the request body** @param name* @param part* @return this request* @throws HttpRequestException*/public HttpRequest part(final String name, final File part)throws HttpRequestException {return part(name, null, part);}/*** Write part of a multipart request to the request body** @param name* @param filename* @param part* @return this request* @throws HttpRequestException*/public HttpRequest part(final String name, final String filename,final File part) throws HttpRequestException {return part(name, filename, null, part);}/*** Write part of a multipart request to the request body** @param name* @param filename* @param contentType* value of the Content-Type part header* @param part* @return this request* @throws HttpRequestException*/public HttpRequest part(final String name, final String filename,final String contentType, final File part) throws HttpRequestException {final InputStream stream;try {stream = new BufferedInputStream(new FileInputStream(part));incrementTotalSize(part.length());} catch (IOException e) {throw new HttpRequestException(e);}return part(name, filename, contentType, stream);}/*** Write part of a multipart request to the request body** @param name* @param part* @return this request* @throws HttpRequestException*/public HttpRequest part(final String name, final InputStream part)throws HttpRequestException {return part(name, null, null, part);}/*** Write part of a multipart request to the request body** @param name* @param filename* @param contentType* value of the Content-Type part header* @param part* @return this request* @throws HttpRequestException*/public HttpRequest part(final String name, final String filename,final String contentType, final InputStream part)throws HttpRequestException {try {startPart();writePartHeader(name, filename, contentType);copy(part, output);} catch (IOException e) {throw new HttpRequestException(e);}return this;}/*** Write a multipart header to the response body** @param name* @param value* @return this request* @throws HttpRequestException*/public HttpRequest partHeader(final String name, final String value)throws HttpRequestException {return send(name).send(": ").send(value).send(CRLF);}/*** Write contents of file to request body** @param input* @return this request* @throws HttpRequestException*/public HttpRequest send(final File input) throws HttpRequestException {final InputStream stream;try {stream = new BufferedInputStream(new FileInputStream(input));incrementTotalSize(input.length());} catch (FileNotFoundException e) {throw new HttpRequestException(e);}return send(stream);}/*** Write byte array to request body** @param input* @return this request* @throws HttpRequestException*/public HttpRequest send(final byte[] input) throws HttpRequestException {if (input != null)incrementTotalSize(input.length);return send(new ByteArrayInputStream(input));}/*** Write stream to request body* <p>* The given stream will be closed once sending completes** @param input* @return this request* @throws HttpRequestException*/public HttpRequest send(final InputStream input) throws HttpRequestException {try {openOutput();copy(input, output);} catch (IOException e) {throw new HttpRequestException(e);}return this;}/*** Write reader to request body* <p>* The given reader will be closed once sending completes** @param input* @return this request* @throws HttpRequestException*/public HttpRequest send(final Reader input) throws HttpRequestException {try {openOutput();} catch (IOException e) {throw new HttpRequestException(e);}final Writer writer = new OutputStreamWriter(output,output.encoder.charset());return new FlushOperation<HttpRequest>(writer) {@Overrideprotected HttpRequest run() throws IOException {return copy(input, writer);}}.call();}/*** Write char sequence to request body* <p>* The charset configured via {@link #contentType(String)} will be used and* UTF-8 will be used if it is unset.** @param value* @return this request* @throws HttpRequestException*/public HttpRequest send(final CharSequence value) throws HttpRequestException {try {openOutput();output.write(value.toString());} catch (IOException e) {throw new HttpRequestException(e);}return this;}/*** Create writer to request output stream** @return writer* @throws HttpRequestException*/public OutputStreamWriter writer() throws HttpRequestException {try {openOutput();return new OutputStreamWriter(output, output.encoder.charset());} catch (IOException e) {throw new HttpRequestException(e);}}/*** Write the values in the map as form data to the request body* <p>* The pairs specified will be URL-encoded in UTF-8 and sent with the* 'application/x-www-form-urlencoded' content-type** @param values* @return this request* @throws HttpRequestException*/public HttpRequest form(final Map<?, ?> values) throws HttpRequestException {return form(values, CHARSET_UTF8);}/*** Write the key and value in the entry as form data to the request body* <p>* The pair specified will be URL-encoded in UTF-8 and sent with the* 'application/x-www-form-urlencoded' content-type** @param entry* @return this request* @throws HttpRequestException*/public HttpRequest form(final Entry<?, ?> entry) throws HttpRequestException {return form(entry, CHARSET_UTF8);}/*** Write the key and value in the entry as form data to the request body* <p>* The pair specified will be URL-encoded and sent with the* 'application/x-www-form-urlencoded' content-type** @param entry* @param charset* @return this request* @throws HttpRequestException*/public HttpRequest form(final Entry<?, ?> entry, final String charset)throws HttpRequestException {return form(entry.getKey(), entry.getValue(), charset);}/*** Write the name/value pair as form data to the request body* <p>* The pair specified will be URL-encoded in UTF-8 and sent with the* 'application/x-www-form-urlencoded' content-type** @param name* @param value* @return this request* @throws HttpRequestException*/public HttpRequest form(final Object name, final Object value)throws HttpRequestException {return form(name, value, CHARSET_UTF8);}/*** Write the name/value pair as form data to the request body* <p>* The values specified will be URL-encoded and sent with the* 'application/x-www-form-urlencoded' content-type** @param name* @param value* @param charset* @return this request* @throws HttpRequestException*/public HttpRequest form(final Object name, final Object value, String charset)throws HttpRequestException {final boolean first = !form;if (first) {contentType(CONTENT_TYPE_FORM, charset);form = true;}charset = getValidCharset(charset);try {openOutput();if (!first)output.write('&');output.write(URLEncoder.encode(name.toString(), charset));output.write('=');if (value != null)output.write(URLEncoder.encode(value.toString(), charset));} catch (IOException e) {throw new HttpRequestException(e);}return this;}/*** Write the values in the map as encoded form data to the request body** @param values* @param charset* @return this request* @throws HttpRequestException*/public HttpRequest form(final Map<?, ?> values, final String charset)throws HttpRequestException {if (!values.isEmpty())for (Entry<?, ?> entry : values.entrySet())form(entry, charset);return this;}/*** Configure HTTPS connection to trust all certificates* <p>* This method does nothing if the current request is not a HTTPS request** @return this request* @throws HttpRequestException*/public HttpRequest trustAllCerts() throws HttpRequestException {final HttpURLConnection connection = getConnection();if (connection instanceof HttpsURLConnection)((HttpsURLConnection) connection).setSSLSocketFactory(getTrustedFactory());return this;}/*** Configure HTTPS connection to trust all hosts using a custom* {@link HostnameVerifier} that always returns <code>true</code> for each* host verified* <p>* This method does nothing if the current request is not a HTTPS request** @return this request*/public HttpRequest trustAllHosts() {final HttpURLConnection connection = getConnection();if (connection instanceof HttpsURLConnection)((HttpsURLConnection) connection).setHostnameVerifier(getTrustedVerifier());return this;}/*** Get the {@link URL} of this request's connection** @return request URL*/public URL url() {return getConnection().getURL();}/*** Get the HTTP method of this request** @return method*/public String method() {return getConnection().getRequestMethod();}/*** Configure an HTTP proxy on this connection. Use {{@link #proxyBasic(String, String)} if* this proxy requires basic authentication.** @param proxyHost* @param proxyPort* @return this request*/public HttpRequest useProxy(final String proxyHost, final int proxyPort) {if (connection != null)throw new IllegalStateException("The connection has already been created. This method must be called before reading or writing to the request.");this.httpProxyHost = proxyHost;this.httpProxyPort = proxyPort;return this;}/*** Set whether or not the underlying connection should follow redirects in* the response.** @param followRedirects - true fo follow redirects, false to not.* @return this request*/public HttpRequest followRedirects(final boolean followRedirects) {getConnection().setInstanceFollowRedirects(followRedirects);return this;}private void setDefaultTimeOut() {getConnection().setConnectTimeout(DEFAULT_CONNECT_TIMEOUT);getConnection().setReadTimeout(DEFAULT_READ_TIMEOUT);}public HttpRequest defaultTimeOut() {this.defaultTimeOutFlag = true;return this;}/**** HttpResponse collects the http response info and make the responsibility clearly(HttpRequest for request,HttpResponse for response)**/public class HttpResponse{/*** Get the status code of the response** @return the response code* @throws HttpRequestException*/public int code() throws HttpRequestException {try {closeOutput();return getConnection().getResponseCode();} catch (IOException e) {throw new HttpRequestException(e);}}/*** Close output stream** @return this response* @throws HttpRequestException* @throws IOException*/protected HttpResponse closeOutput() throws IOException {progress(null);if (output == null)return this;if (multipart)output.write(CRLF + "--" + BOUNDARY + "--" + CRLF);if (ignoreCloseExceptions)try {output.close();} catch (IOException ignored) {// Ignored}elseoutput.close();output = null;return this;}/*** Set the value of the given {@link AtomicInteger} to the status code of the* response** @param output* @return this response* @throws HttpRequestException*/public HttpResponse code(final AtomicInteger output)throws HttpRequestException {output.set(code());return this;}/*** Call {@link #closeOutput()} and re-throw a caught {@link IOException}s as* an {@link HttpRequestException}** @return this response* @throws HttpRequestException*/protected HttpResponse closeOutputQuietly() throws HttpRequestException {try {return closeOutput();} catch (IOException e) {throw new HttpRequestException(e);}}/*** Is the response code a 200 OK?** @return true if 200, false otherwise* @throws HttpRequestException*/public boolean ok() throws HttpRequestException {return HTTP_OK == code();}/*** Is the response code a 201 Created?** @return true if 201, false otherwise* @throws HttpRequestException*/public boolean created() throws HttpRequestException {return HTTP_CREATED == code();}/*** Is the response code a 204 No Content?** @return true if 204, false otherwise* @throws HttpRequestException*/public boolean noContent() throws HttpRequestException {return HTTP_NO_CONTENT == code();}/*** Is the response code a 500 Internal Server Error?** @return true if 500, false otherwise* @throws HttpRequestException*/public boolean serverError() throws HttpRequestException {return HTTP_INTERNAL_ERROR == code();}/*** Is the response code a 400 Bad Request?** @return true if 400, false otherwise* @throws HttpRequestException*/public boolean badRequest() throws HttpRequestException {return HTTP_BAD_REQUEST == code();}/*** Is the response code a 404 Not Found?** @return true if 404, false otherwise* @throws HttpRequestException*/public boolean notFound() throws HttpRequestException {return HTTP_NOT_FOUND == code();}/*** Is the response code a 304 Not Modified?** @return true if 304, false otherwise* @throws HttpRequestException*/public boolean notModified() throws HttpRequestException {return HTTP_NOT_MODIFIED == code();}/*** Get status message of the response** @return message* @throws HttpRequestException*/public String message() throws HttpRequestException {try {closeOutput();return getConnection().getResponseMessage();} catch (IOException e) {throw new HttpRequestException(e);}}/*** Get response as {@link String} in given character set* <p>* This will fall back to using the UTF-8 character set if the given charset* is null** @param charset* @return string* @throws HttpRequestException*/public String body(final String charset) throws HttpRequestException {final ByteArrayOutputStream output = byteStream();try {copy(buffer(), output);return output.toString(getValidCharset(charset));} catch (IOException e) {throw new HttpRequestException(e);}}/*** Get response as {@link String} using character set returned from* {@link #charset()}** @return string* @throws HttpRequestException*/public String body() throws HttpRequestException {return body(charset());}/*** Get the response body as a {@link String} and set it as the value of the* given reference.** @param output* @return this response* @throws HttpRequestException*/public HttpResponse body(final AtomicReference<String> output) throws HttpRequestException {output.set(body());return this;}/*** Get the response body as a {@link String} and set it as the value of the* given reference.** @param output* @param charset* @return this response* @throws HttpRequestException*/public HttpResponse body(final AtomicReference<String> output, final String charset) throws HttpRequestException {output.set(body(charset));return this;}/*** Is the response body empty?** @return true if the Content-Length response header is 0, false otherwise* @throws HttpRequestException*/public boolean isBodyEmpty() throws HttpRequestException {return contentLength() == 0;}/*** Get response as byte array** @return byte array* @throws HttpRequestException*/public byte[] bytes() throws HttpRequestException {final ByteArrayOutputStream output = byteStream();try {copy(buffer(), output);} catch (IOException e) {throw new HttpRequestException(e);}return output.toByteArray();}/*** Get response in a buffered stream** @see #bufferSize(int)* @return stream* @throws HttpRequestException*/public BufferedInputStream buffer() throws HttpRequestException {return new BufferedInputStream(stream(), bufferSize);}/*** Get a response header** @param name* @return response header* @throws HttpRequestException*/public String header(final String name) throws HttpRequestException {closeOutputQuietly();return getConnection().getHeaderField(name);}/*** Get all the response headers** @return map of response header names to their value(s)* @throws HttpRequestException*/public Map<String, List<String>> headers() throws HttpRequestException {closeOutputQuietly();return getConnection().getHeaderFields();}/*** Get a date header from the response falling back to returning -1 if the* header is missing or parsing fails** @param name* @return date, -1 on failures* @throws HttpRequestException*/public long dateHeader(final String name) throws HttpRequestException {return dateHeader(name, -1L);}/*** Get a date header from the response falling back to returning the given* default value if the header is missing or parsing fails** @param name* @param defaultValue* @return date, default value on failures* @throws HttpRequestException*/public long dateHeader(final String name, final long defaultValue)throws HttpRequestException {closeOutputQuietly();return getConnection().getHeaderFieldDate(name, defaultValue);}/*** Get the 'Content-Encoding' header from the response** @return this request*/public String contentEncoding() {return header(HEADER_CONTENT_ENCODING);}/*** Get the 'Server' header from the response** @return server*/public String server() {return header(HEADER_SERVER);}/*** Get the 'Date' header from the response** @return date value, -1 on failures*/public long date() {return dateHeader(HEADER_DATE);}/*** Get the 'Cache-Control' header from the response** @return cache control*/public String cacheControl() {return header(HEADER_CACHE_CONTROL);}/*** Get the 'ETag' header from the response** @return entity tag*/public String eTag() {return header(HEADER_ETAG);}/*** Get the 'Expires' header from the response** @return expires value, -1 on failures*/public long expires() {return dateHeader(HEADER_EXPIRES);}/*** Get the 'Last-Modified' header from the response** @return last modified value, -1 on failures*/public long lastModified() {return dateHeader(HEADER_LAST_MODIFIED);}/*** Get the 'Location' header from the response** @return location*/public String location() {return header(HEADER_LOCATION);}/*** Get parameter with given name from header value in response** @param headerName* @param paramName* @return parameter value or null if missing*/public String parameter(final String headerName, final String paramName) {return getParam(header(headerName), paramName);}/*** Get all parameters from header value in response* <p>* This will be all key=value pairs after the first ';' that are separated by* a ';'** @param headerName* @return non-null but possibly empty map of parameter headers*/public Map<String, String> parameters(final String headerName) {return getParams(header(headerName));}/*** Get 'charset' parameter from 'Content-Type' response header** @return charset or null if none*/public String charset() {return parameter(HEADER_CONTENT_TYPE, PARAM_CHARSET);}/*** Get all values of the given header from the response** @param name* @return non-null but possibly empty array of {@link String} header values*/public String[] headers(final String name) {final Map<String, List<String>> headers = headers();if (headers == null || headers.isEmpty())return EMPTY_STRINGS;final List<String> values = headers.get(name);if (values != null && !values.isEmpty())return values.toArray(new String[values.size()]);elsereturn EMPTY_STRINGS;}/*** Create byte array output stream** @return stream*/protected ByteArrayOutputStream byteStream() {final int size = contentLength();if (size > 0)return new ByteArrayOutputStream(size);elsereturn new ByteArrayOutputStream();}/*** Get the 'Content-Length' header from the response** @return response header value*/public int contentLength() {return intHeader(HEADER_CONTENT_LENGTH);}/*** Get an integer header from the response falling back to returning -1 if the* header is missing or parsing fails** @param name* @return header value as an integer, -1 when missing or parsing fails* @throws HttpRequestException*/public int intHeader(final String name) throws HttpRequestException {return intHeader(name, -1);}/*** Get an integer header value from the response falling back to the given* default value if the header is missing or if parsing fails** @param name* @param defaultValue* @return header value as an integer, default value when missing or parsing* fails* @throws HttpRequestException*/public int intHeader(final String name, final int defaultValue)throws HttpRequestException {closeOutputQuietly();return getConnection().getHeaderFieldInt(name, defaultValue);}/*** Get stream to response body** @return stream* @throws HttpRequestException*/public InputStream stream() throws HttpRequestException {if (defaultTimeOutFlag) {setDefaultTimeOut();}InputStream stream;if (code() < HTTP_BAD_REQUEST)try {stream = getConnection().getInputStream();} catch (IOException e) {throw new HttpRequestException(e);}else {stream = getConnection().getErrorStream();if (stream == null)try {stream = getConnection().getInputStream();} catch (IOException e) {if (contentLength() > 0)throw new HttpRequestException(e);elsestream = new ByteArrayInputStream(new byte[0]);}}if (!uncompress || !ENCODING_GZIP.equals(contentEncoding()))return stream;elsetry {return new GZIPInputStream(stream);} catch (IOException e) {throw new HttpRequestException(e);}}/*** Get reader to response body using given character set.* <p>* This will fall back to using the UTF-8 character set if the given charset* is null** @param charset* @return reader* @throws HttpRequestException*/public InputStreamReader reader(final String charset)throws HttpRequestException {try {return new InputStreamReader(stream(), getValidCharset(charset));} catch (UnsupportedEncodingException e) {throw new HttpRequestException(e);}}/*** Get reader to response body using the character set returned from* {@link #charset()}** @return reader* @throws HttpRequestException*/public InputStreamReader reader() throws HttpRequestException {return reader(charset());}/*** Get buffered reader to response body using the given character set r and* the configured buffer size*** @see #bufferSize(int)* @param charset* @return reader* @throws HttpRequestException*/public BufferedReader bufferedReader(final String charset)throws HttpRequestException {return new BufferedReader(reader(charset), bufferSize);}/*** Get buffered reader to response body using the character set returned from* {@link #charset()} and the configured buffer size** @see #bufferSize(int)* @return reader* @throws HttpRequestException*/public BufferedReader bufferedReader() throws HttpRequestException {return bufferedReader(charset());}/*** Stream response body to file** @param file* @return this request* @throws HttpRequestException*/public HttpResponse receive(final File file) throws HttpRequestException {final OutputStream output;try {output = new BufferedOutputStream(new FileOutputStream(file), bufferSize);} catch (FileNotFoundException e) {throw new HttpRequestException(e);}return new CloseOperation<HttpResponse>(output, ignoreCloseExceptions) {@Overrideprotected HttpResponse run() throws HttpRequestException, IOException {return receive(output);}}.call();}/*** Stream response to given output stream** @param output* @return this request* @throws HttpRequestException*/public HttpResponse receive(final OutputStream output)throws HttpRequestException {try {return copy(buffer(), output);} catch (IOException e) {throw new HttpRequestException(e);}}/*** Stream response to given print stream** @param output* @return this request* @throws HttpRequestException*/public HttpResponse receive(final PrintStream output)throws HttpRequestException {return receive((OutputStream) output);}/*** Receive response into the given appendable** @param appendable* @return this request* @throws HttpRequestException*/public HttpResponse receive(final Appendable appendable)throws HttpRequestException {final BufferedReader reader = bufferedReader();return new CloseOperation<HttpResponse>(reader, ignoreCloseExceptions) {@Overridepublic HttpResponse run() throws IOException {final CharBuffer buffer = CharBuffer.allocate(bufferSize);int read;while ((read = reader.read(buffer)) != -1) {buffer.rewind();appendable.append(buffer, 0, read);buffer.rewind();}return HttpRequest.this.httpResponse;}}.call();}}/*** this method is used to execute a http request and get a HttpResponse* @return*/public HttpResponse executeHttpRequest(){if (httpResponse ==null) {httpResponse = new HttpResponse();}return httpResponse;}}

總結(jié)

以上是生活随笔為你收集整理的一个http-request的源码及改进的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。

丰满少妇高潮惨叫视频 | 黑人玩弄人妻中文在线 | 九九热爱视频精品 | 国产激情一区二区三区 | 樱花草在线社区www | 欧美人与物videos另类 | 亚洲精品中文字幕 | 成年美女黄网站色大免费视频 | 日本一卡二卡不卡视频查询 | 天天做天天爱天天爽综合网 | 亚洲一区二区观看播放 | 国产人妻大战黑人第1集 | 国产xxx69麻豆国语对白 | 纯爱无遮挡h肉动漫在线播放 | 性欧美熟妇videofreesex | 久久zyz资源站无码中文动漫 | 亚洲综合久久一区二区 | 国产成人精品视频ⅴa片软件竹菊 | 国产片av国语在线观看 | 伊在人天堂亚洲香蕉精品区 | 日韩人妻无码一区二区三区久久99 | 亚洲毛片av日韩av无码 | 无遮挡啪啪摇乳动态图 | 亚洲色欲色欲欲www在线 | 亚洲爆乳无码专区 | 激情国产av做激情国产爱 | 午夜性刺激在线视频免费 | 国产热a欧美热a在线视频 | 亚洲s色大片在线观看 | 国产精品va在线播放 | 精品一二三区久久aaa片 | 亚洲成av人影院在线观看 | 久久精品国产大片免费观看 | 成在人线av无码免费 | 精品一区二区不卡无码av | 学生妹亚洲一区二区 | 性做久久久久久久久 | 国产偷国产偷精品高清尤物 | a在线观看免费网站大全 | 精品成在人线av无码免费看 | 亚洲欧美精品aaaaaa片 | 无码人妻久久一区二区三区不卡 | 蜜臀aⅴ国产精品久久久国产老师 | 少妇高潮喷潮久久久影院 | 久久国产精品精品国产色婷婷 | 青草视频在线播放 | 曰韩无码二三区中文字幕 | 成人一在线视频日韩国产 | 亚洲欧美色中文字幕在线 | 中文字幕日韩精品一区二区三区 | 成人毛片一区二区 | 欧美 日韩 亚洲 在线 | 丰满少妇人妻久久久久久 | 亚洲日韩中文字幕在线播放 | 国产亚洲人成在线播放 | 日本爽爽爽爽爽爽在线观看免 | 国产成人综合美国十次 | 国产精品亚洲五月天高清 | 久久人人爽人人人人片 | 国产舌乚八伦偷品w中 | 日韩人妻无码中文字幕视频 | 成人无码精品1区2区3区免费看 | 伊人久久大香线焦av综合影院 | 男人扒开女人内裤强吻桶进去 | 双乳奶水饱满少妇呻吟 | av无码久久久久不卡免费网站 | 丁香啪啪综合成人亚洲 | 水蜜桃色314在线观看 | 免费观看又污又黄的网站 | 少妇性l交大片欧洲热妇乱xxx | 亚欧洲精品在线视频免费观看 | 欧美日韩亚洲国产精品 | 色一情一乱一伦 | 牲欲强的熟妇农村老妇女视频 | 日韩欧美中文字幕在线三区 | 日本精品高清一区二区 | 亚洲国产精品久久久天堂 | 欧美xxxxx精品 | 狂野欧美性猛xxxx乱大交 | 国产成人无码a区在线观看视频app | 无码人妻精品一区二区三区下载 | av无码电影一区二区三区 | 伊人色综合久久天天小片 | 一本色道久久综合亚洲精品不卡 | 久久久成人毛片无码 | 亚洲色欲久久久综合网东京热 | 久久亚洲精品中文字幕无男同 | 精品偷拍一区二区三区在线看 | 中国大陆精品视频xxxx | 国产乱人伦av在线无码 | 久久午夜夜伦鲁鲁片无码免费 | 丰满岳乱妇在线观看中字无码 | 中文久久乱码一区二区 | 天堂а√在线地址中文在线 | 免费无码一区二区三区蜜桃大 | 高中生自慰www网站 | 亚洲综合在线一区二区三区 | 无码国内精品人妻少妇 | 精品久久久久久人妻无码中文字幕 | 日本www一道久久久免费榴莲 | 亚洲阿v天堂在线 | 国产区女主播在线观看 | 色老头在线一区二区三区 | 一本无码人妻在中文字幕免费 | 精品一区二区三区波多野结衣 | 天天拍夜夜添久久精品大 | 牲欲强的熟妇农村老妇女 | 亚洲春色在线视频 | 亚拍精品一区二区三区探花 | 午夜福利电影 | 国产精品久久久久久久9999 | 国产免费久久久久久无码 | 成人欧美一区二区三区 | 在线视频网站www色 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 国产农村乱对白刺激视频 | 欧美人与禽zoz0性伦交 | 中文字幕无码乱人伦 | 久久人人爽人人爽人人片ⅴ | 无码播放一区二区三区 | 国产特级毛片aaaaaaa高清 | 国产做国产爱免费视频 | 日日躁夜夜躁狠狠躁 | 久久久精品国产sm最大网站 | 国产国产精品人在线视 | 熟妇人妻无码xxx视频 | 国产精品亚洲а∨无码播放麻豆 | 亚洲码国产精品高潮在线 | 日韩视频 中文字幕 视频一区 | aa片在线观看视频在线播放 | 十八禁真人啪啪免费网站 | 无码吃奶揉捏奶头高潮视频 | 亚洲一区二区三区香蕉 | 呦交小u女精品视频 | 亚洲国产欧美国产综合一区 | 自拍偷自拍亚洲精品被多人伦好爽 | 永久免费精品精品永久-夜色 | 丰满人妻翻云覆雨呻吟视频 | 国内精品一区二区三区不卡 | 亚洲熟妇自偷自拍另类 | 一本无码人妻在中文字幕免费 | 98国产精品综合一区二区三区 | 亚洲日本在线电影 | 性色欲网站人妻丰满中文久久不卡 | 免费无码av一区二区 | 亚洲爆乳精品无码一区二区三区 | 中文字幕乱码人妻无码久久 | 黑人巨大精品欧美黑寡妇 | 国产成人亚洲综合无码 | 牛和人交xxxx欧美 | 欧美丰满老熟妇xxxxx性 | 丰满岳乱妇在线观看中字无码 | 亚洲一区二区三区播放 | 免费国产成人高清在线观看网站 | 亚洲中文字幕久久无码 | 无码人妻少妇伦在线电影 | 51国偷自产一区二区三区 | 精品国产一区av天美传媒 | 青青青手机频在线观看 | 国产精品人人爽人人做我的可爱 | 99麻豆久久久国产精品免费 | 国产乱人无码伦av在线a | 国产一精品一av一免费 | 特黄特色大片免费播放器图片 | 国产办公室秘书无码精品99 | 樱花草在线播放免费中文 | 国产亚洲欧美在线专区 | 中文字幕无码免费久久99 | 国内综合精品午夜久久资源 | 国产明星裸体无码xxxx视频 | 亚洲国产精品无码久久久久高潮 | 亚洲日本一区二区三区在线 | 欧美成人免费全部网站 | 无套内射视频囯产 | 亚洲va欧美va天堂v国产综合 | 日日摸天天摸爽爽狠狠97 | 日本va欧美va欧美va精品 | 亚洲精品无码人妻无码 | 在线播放无码字幕亚洲 | av人摸人人人澡人人超碰下载 | 亚洲春色在线视频 | 国产精品久久久久久亚洲毛片 | 国产成人无码av一区二区 | а√资源新版在线天堂 | 日韩精品无码免费一区二区三区 | 亚洲精品国产第一综合99久久 | 成人片黄网站色大片免费观看 | 欧美国产日产一区二区 | 午夜性刺激在线视频免费 | 西西人体www44rt大胆高清 | 亚洲区小说区激情区图片区 | 人人妻人人澡人人爽欧美一区九九 | 捆绑白丝粉色jk震动捧喷白浆 | 99久久精品国产一区二区蜜芽 | 香港三级日本三级妇三级 | 国产精品人妻一区二区三区四 | 久热国产vs视频在线观看 | 欧美熟妇另类久久久久久不卡 | 国产九九九九九九九a片 | 亚洲精品一区二区三区在线观看 | 日日躁夜夜躁狠狠躁 | 77777熟女视频在线观看 а天堂中文在线官网 | 精品水蜜桃久久久久久久 | 性欧美熟妇videofreesex | 动漫av网站免费观看 | 国产精品无码永久免费888 | 亚洲熟女一区二区三区 | а√天堂www在线天堂小说 | 熟女体下毛毛黑森林 | 噜噜噜亚洲色成人网站 | 亚洲熟妇色xxxxx欧美老妇 | 久久精品99久久香蕉国产色戒 | 亚洲一区二区三区国产精华液 | 亚洲热妇无码av在线播放 | 国产成人精品一区二区在线小狼 | 亚洲一区二区三区含羞草 | 东京热无码av男人的天堂 | 国产成人精品三级麻豆 | 欧洲熟妇精品视频 | 久久精品99久久香蕉国产色戒 | 波多野结衣av一区二区全免费观看 | 少妇人妻偷人精品无码视频 | 国产片av国语在线观看 | 日本丰满熟妇videos | 在教室伦流澡到高潮hnp视频 | 精品国偷自产在线视频 | 欧美激情一区二区三区成人 | 色欲综合久久中文字幕网 | 日韩欧美中文字幕公布 | 国内少妇偷人精品视频 | 樱花草在线社区www | 99国产欧美久久久精品 | 精品国产av色一区二区深夜久久 | 日日橹狠狠爱欧美视频 | 欧洲熟妇色 欧美 | 亚洲中文字幕无码中文字在线 | 国内丰满熟女出轨videos | 欧美35页视频在线观看 | 日本成熟视频免费视频 | 国产乱码精品一品二品 | 精品一区二区三区无码免费视频 | 成人影院yy111111在线观看 | 国产精品a成v人在线播放 | 久久综合狠狠综合久久综合88 | 天堂无码人妻精品一区二区三区 | 国产综合久久久久鬼色 | 日韩av无码中文无码电影 | 日本一区二区更新不卡 | 午夜福利试看120秒体验区 | √天堂中文官网8在线 | aⅴ亚洲 日韩 色 图网站 播放 | 黑人巨大精品欧美黑寡妇 | 色综合久久久久综合一本到桃花网 | 日韩精品无码一本二本三本色 | 亚洲国产午夜精品理论片 | 精品一二三区久久aaa片 | 久久国产精品萌白酱免费 | 日本熟妇大屁股人妻 | 无码帝国www无码专区色综合 | 久久国产自偷自偷免费一区调 | 欧美 日韩 亚洲 在线 | 国产香蕉尹人综合在线观看 | 综合激情五月综合激情五月激情1 | 亚洲 激情 小说 另类 欧美 | 男女下面进入的视频免费午夜 | 中文字幕无码热在线视频 | 狠狠色噜噜狠狠狠7777奇米 | 国产内射爽爽大片视频社区在线 | 国产亚洲欧美日韩亚洲中文色 | 国产网红无码精品视频 | 久久久久久久人妻无码中文字幕爆 | 久久人人爽人人人人片 | 久久综合网欧美色妞网 | 亚洲熟妇自偷自拍另类 | 色婷婷综合激情综在线播放 | 亚洲精品鲁一鲁一区二区三区 | 国产激情艳情在线看视频 | 成人综合网亚洲伊人 | 久久久精品456亚洲影院 | 7777奇米四色成人眼影 | 国产又爽又黄又刺激的视频 | 未满小14洗澡无码视频网站 | 婷婷六月久久综合丁香 | 日本护士xxxxhd少妇 | 国产乱人偷精品人妻a片 | 久久国产精品偷任你爽任你 | 性生交大片免费看女人按摩摩 | 最近中文2019字幕第二页 | 国产成人人人97超碰超爽8 | 少妇性l交大片欧洲热妇乱xxx | 亚洲中文字幕无码中文字在线 | 国产精品亚洲lv粉色 | 精品久久综合1区2区3区激情 | 真人与拘做受免费视频 | 国产小呦泬泬99精品 | 亚洲国精产品一二二线 | 人人妻人人澡人人爽人人精品浪潮 | 国产精品igao视频网 | 亚洲中文字幕无码中字 | 久久午夜无码鲁丝片午夜精品 | 精品乱子伦一区二区三区 | 久久人人爽人人爽人人片av高清 | 精品亚洲成av人在线观看 | 国内综合精品午夜久久资源 | 人人妻人人澡人人爽欧美一区 | 亚洲国产精品一区二区美利坚 | 亚洲日韩一区二区 | 久久精品国产日本波多野结衣 | 九九久久精品国产免费看小说 | 中文字幕av日韩精品一区二区 | 特黄特色大片免费播放器图片 | 日本va欧美va欧美va精品 | 国产激情无码一区二区app | 综合网日日天干夜夜久久 | 给我免费的视频在线观看 | 中文字幕色婷婷在线视频 | 欧美性生交活xxxxxdddd | 内射爽无广熟女亚洲 | 曰本女人与公拘交酡免费视频 | 国产精品第一国产精品 | 无码人妻精品一区二区三区下载 | 国产香蕉尹人视频在线 | 日韩人妻无码一区二区三区久久99 | 精品 日韩 国产 欧美 视频 | 少妇久久久久久人妻无码 | 国产av一区二区三区最新精品 | 婷婷五月综合缴情在线视频 | 亚洲高清偷拍一区二区三区 | 欧美35页视频在线观看 | 嫩b人妻精品一区二区三区 | 国产精品二区一区二区aⅴ污介绍 | 国产人妻人伦精品1国产丝袜 | 国内揄拍国内精品少妇国语 | av人摸人人人澡人人超碰下载 | 亚洲精品无码人妻无码 | 色一情一乱一伦 | 中文字幕无码免费久久9一区9 | 欧美性生交活xxxxxdddd | 成人欧美一区二区三区 | 欧美第一黄网免费网站 | 国产精品va在线播放 | 少妇性俱乐部纵欲狂欢电影 | 自拍偷自拍亚洲精品被多人伦好爽 | 夜夜夜高潮夜夜爽夜夜爰爰 | 亚洲综合在线一区二区三区 | www国产精品内射老师 | 国产深夜福利视频在线 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 精品无码国产自产拍在线观看蜜 | 亚洲无人区午夜福利码高清完整版 | 少妇无码av无码专区在线观看 | 97夜夜澡人人双人人人喊 | 国语自产偷拍精品视频偷 | 成人免费视频视频在线观看 免费 | 精品人妻人人做人人爽夜夜爽 | 亚洲 a v无 码免 费 成 人 a v | 狂野欧美性猛交免费视频 | 精品亚洲韩国一区二区三区 | 九九综合va免费看 | 精品人妻人人做人人爽夜夜爽 | 欧美激情一区二区三区成人 | 欧美自拍另类欧美综合图片区 | 精品无人国产偷自产在线 | 精品久久久无码人妻字幂 | 国产一区二区三区精品视频 | 99国产精品白浆在线观看免费 | 亚洲啪av永久无码精品放毛片 | 无码人妻少妇伦在线电影 | 少女韩国电视剧在线观看完整 | 色妞www精品免费视频 | 亚洲国产精品无码久久久久高潮 | 国产av无码专区亚洲a∨毛片 | 日本精品高清一区二区 | 亚洲精品久久久久中文第一幕 | 中文字幕乱妇无码av在线 | 成人精品天堂一区二区三区 | 国产精品嫩草久久久久 | 国产在线无码精品电影网 | 成人亚洲精品久久久久 | 国产 精品 自在自线 | 久久人人爽人人爽人人片av高清 | 亚洲爆乳精品无码一区二区三区 | 国产另类ts人妖一区二区 | 午夜嘿嘿嘿影院 | 97夜夜澡人人双人人人喊 | 无码免费一区二区三区 | 俺去俺来也在线www色官网 | 国产肉丝袜在线观看 | 内射欧美老妇wbb | 日韩人妻无码一区二区三区久久99 | 香港三级日本三级妇三级 | 未满小14洗澡无码视频网站 | 国产乡下妇女做爰 | 爽爽影院免费观看 | 粗大的内捧猛烈进出视频 | 最新版天堂资源中文官网 | 性色欲网站人妻丰满中文久久不卡 | 国产精品a成v人在线播放 | 亚洲欧洲日本综合aⅴ在线 | 国内揄拍国内精品人妻 | 国产精品第一区揄拍无码 | 久久久精品欧美一区二区免费 | 鲁鲁鲁爽爽爽在线视频观看 | 国产精品久久久久久无码 | 久久久精品国产sm最大网站 | 精品人妻人人做人人爽 | 丝袜 中出 制服 人妻 美腿 | 欧美国产日产一区二区 | 人人超人人超碰超国产 | 国产女主播喷水视频在线观看 | 全球成人中文在线 | 国内少妇偷人精品视频 | 欧美性色19p | 日韩精品a片一区二区三区妖精 | 久久精品人人做人人综合试看 | 激情内射亚州一区二区三区爱妻 | 国产精品美女久久久久av爽李琼 | 成人片黄网站色大片免费观看 | 成人av无码一区二区三区 | 成年美女黄网站色大免费视频 | 精品人妻中文字幕有码在线 | 亚洲熟悉妇女xxx妇女av | 奇米影视888欧美在线观看 | 日韩精品乱码av一区二区 | 久久久成人毛片无码 | 亚洲精品国产第一综合99久久 | 免费国产成人高清在线观看网站 | 欧美真人作爱免费视频 | 亚洲日韩中文字幕在线播放 | 在线观看免费人成视频 | 欧美午夜特黄aaaaaa片 | 亚洲人成网站在线播放942 | аⅴ资源天堂资源库在线 | 亚洲成av人在线观看网址 | 4hu四虎永久在线观看 | 国产精品久久久久久久影院 | 中文字幕中文有码在线 | 国产精品办公室沙发 | 亚洲欧美色中文字幕在线 | 丝袜美腿亚洲一区二区 | 久久无码中文字幕免费影院蜜桃 | 日本大乳高潮视频在线观看 | 九九热爱视频精品 | 中国女人内谢69xxxx | 激情国产av做激情国产爱 | 精品一区二区三区无码免费视频 | 亚洲国产精品成人久久蜜臀 | 亚洲aⅴ无码成人网站国产app | 一本久道久久综合狠狠爱 | 国产欧美熟妇另类久久久 | 老司机亚洲精品影院 | 玩弄中年熟妇正在播放 | 国产精品久久久久久久影院 | 日日夜夜撸啊撸 | 亚洲精品成a人在线观看 | 国产亚洲精品精品国产亚洲综合 | 久久精品一区二区三区四区 | 色婷婷av一区二区三区之红樱桃 | 欧美三级a做爰在线观看 | 国产精华av午夜在线观看 | 亚洲色欲久久久综合网东京热 | 性欧美牲交xxxxx视频 | 成在人线av无码免费 | 内射后入在线观看一区 | 国产婷婷色一区二区三区在线 | 狠狠亚洲超碰狼人久久 | 亚洲综合久久一区二区 | 狠狠色噜噜狠狠狠7777奇米 | 国精品人妻无码一区二区三区蜜柚 | 波多野结衣aⅴ在线 | 国产av一区二区精品久久凹凸 | 无码精品国产va在线观看dvd | 在线成人www免费观看视频 | 亚洲中文字幕成人无码 | 国产无av码在线观看 | 日本一区二区更新不卡 | 亚洲人亚洲人成电影网站色 | 亚洲日韩av一区二区三区中文 | 亚洲呦女专区 | 国产猛烈高潮尖叫视频免费 | 色一情一乱一伦 | 国产精品久久久久久久9999 | 红桃av一区二区三区在线无码av | 精品 日韩 国产 欧美 视频 | 久久国产自偷自偷免费一区调 | 亚洲中文字幕无码中文字在线 | 国产成人无码一二三区视频 | 久久精品国产99久久6动漫 | 男女作爱免费网站 | 天天拍夜夜添久久精品 | 亚洲另类伦春色综合小说 | 亚洲精品无码人妻无码 | 人人妻人人澡人人爽人人精品 | 又紧又大又爽精品一区二区 | 在线亚洲高清揄拍自拍一品区 | 色一情一乱一伦一区二区三欧美 | 亚洲の无码国产の无码影院 | 又黄又爽又色的视频 | 国产精品第一区揄拍无码 | 亚洲成av人影院在线观看 | 性欧美熟妇videofreesex | 波多野结衣aⅴ在线 | 熟女俱乐部五十路六十路av | 丰满少妇女裸体bbw | 中国大陆精品视频xxxx | 国产精品亚洲专区无码不卡 | 狠狠亚洲超碰狼人久久 | 精品一区二区不卡无码av | 国产农村妇女高潮大叫 | 2020久久超碰国产精品最新 | 2019午夜福利不卡片在线 | 亚洲精品久久久久中文第一幕 | 一本大道伊人av久久综合 | 国产极品视觉盛宴 | 久久久久人妻一区精品色欧美 | 强伦人妻一区二区三区视频18 | 久久久久久九九精品久 | 成人欧美一区二区三区黑人免费 | 精品水蜜桃久久久久久久 | 中文亚洲成a人片在线观看 | 欧美激情一区二区三区成人 | 麻豆国产丝袜白领秘书在线观看 | 精品无码国产自产拍在线观看蜜 | 国产精品无套呻吟在线 | 一本加勒比波多野结衣 | 俄罗斯老熟妇色xxxx | 国产亚洲精品久久久ai换 | 亚洲中文字幕成人无码 | 天堂无码人妻精品一区二区三区 | 日日天干夜夜狠狠爱 | 成人片黄网站色大片免费观看 | 人妻互换免费中文字幕 | 精品久久久久香蕉网 | 永久免费观看国产裸体美女 | 一区二区三区乱码在线 | 欧洲 | 久久99精品久久久久婷婷 | 97se亚洲精品一区 | 一个人看的视频www在线 | 国产极品视觉盛宴 | 啦啦啦www在线观看免费视频 | 国产成人av免费观看 | 一二三四社区在线中文视频 | 狠狠色噜噜狠狠狠7777奇米 | 国产午夜福利亚洲第一 | 久久午夜无码鲁丝片午夜精品 | 精品成在人线av无码免费看 | 18禁止看的免费污网站 | 免费无码av一区二区 | 天下第一社区视频www日本 | 亚洲精品欧美二区三区中文字幕 | 一本大道久久东京热无码av | 妺妺窝人体色www婷婷 | 动漫av一区二区在线观看 | 国产免费无码一区二区视频 | 久久综合给久久狠狠97色 | 欧美熟妇另类久久久久久多毛 | 亚洲一区二区三区四区 | 人人妻人人澡人人爽欧美精品 | 亚洲爆乳无码专区 | 国产精品久久久久7777 | 国产热a欧美热a在线视频 | 成人试看120秒体验区 | 国产免费无码一区二区视频 | 亚洲熟妇自偷自拍另类 | 88国产精品欧美一区二区三区 | 国产尤物精品视频 | 性啪啪chinese东北女人 | 精品无码一区二区三区爱欲 | 久久综合香蕉国产蜜臀av | 日日噜噜噜噜夜夜爽亚洲精品 | 亚洲日本va午夜在线电影 | 乱人伦人妻中文字幕无码 | 成人三级无码视频在线观看 | 乱人伦人妻中文字幕无码 | 精品国产麻豆免费人成网站 | 午夜精品久久久内射近拍高清 | 激情五月综合色婷婷一区二区 | 人人爽人人澡人人人妻 | 亚洲国产精品久久久久久 | 国产乱人偷精品人妻a片 | 国产成人综合在线女婷五月99播放 | 国产精品久久久久久无码 | 日本肉体xxxx裸交 | 亚洲欧美精品aaaaaa片 | 日本又色又爽又黄的a片18禁 | 中文字幕av无码一区二区三区电影 | 国产精品久久久久久无码 | 亲嘴扒胸摸屁股激烈网站 | 成人精品视频一区二区 | 久久亚洲a片com人成 | 亚洲成a人片在线观看无码3d | 国产成人综合色在线观看网站 | 中文字幕乱码人妻无码久久 | 欧美 日韩 人妻 高清 中文 | 亚洲色www成人永久网址 | aⅴ亚洲 日韩 色 图网站 播放 | 午夜男女很黄的视频 | 久久国产精品萌白酱免费 | 香港三级日本三级妇三级 | 欧美精品免费观看二区 | 久久久www成人免费毛片 | 亚洲成色www久久网站 | 久久久久久久人妻无码中文字幕爆 | 无码人妻久久一区二区三区不卡 | 亚洲成av人影院在线观看 | 三上悠亚人妻中文字幕在线 | 国产成人精品无码播放 | 97色伦图片97综合影院 | 性啪啪chinese东北女人 | 中文无码成人免费视频在线观看 | 亚洲国产精品一区二区美利坚 | 色妞www精品免费视频 | 亚洲aⅴ无码成人网站国产app | 日产精品高潮呻吟av久久 | 国产 浪潮av性色四虎 | 99久久婷婷国产综合精品青草免费 | 日韩精品无码免费一区二区三区 | 久久综合激激的五月天 | 久久久久久久久888 | 国产亚洲视频中文字幕97精品 | 18禁黄网站男男禁片免费观看 | 人妻aⅴ无码一区二区三区 | 亚洲国产精品久久久天堂 | 国产午夜视频在线观看 | 国产精品香蕉在线观看 | 在线观看国产午夜福利片 | 成人片黄网站色大片免费观看 | 亚洲成av人影院在线观看 | 十八禁真人啪啪免费网站 | 日本一区二区三区免费播放 | 国产97在线 | 亚洲 | 亚无码乱人伦一区二区 | 强辱丰满人妻hd中文字幕 | 欧美激情综合亚洲一二区 | 亚洲欧美日韩综合久久久 | 亚洲精品久久久久久久久久久 | 国产真人无遮挡作爱免费视频 | 人人超人人超碰超国产 | 日韩亚洲欧美中文高清在线 | 国产午夜亚洲精品不卡 | 小sao货水好多真紧h无码视频 | 99久久人妻精品免费二区 | 日日麻批免费40分钟无码 | 亚洲の无码国产の无码影院 | 四十如虎的丰满熟妇啪啪 | 国产精品久久久久9999小说 | 欧美成人午夜精品久久久 | 国内精品人妻无码久久久影院蜜桃 | 国产艳妇av在线观看果冻传媒 | 亚洲欧美日韩国产精品一区二区 | 婷婷色婷婷开心五月四房播播 | 国产精品沙发午睡系列 | 国产深夜福利视频在线 | 国产精品久久福利网站 | 国产精品久久久久久无码 | 欧美性生交xxxxx久久久 | 自拍偷自拍亚洲精品10p | 亚洲国产成人av在线观看 | 国产一精品一av一免费 | 乱中年女人伦av三区 | 天下第一社区视频www日本 | 欧美35页视频在线观看 | 精品国产国产综合精品 | 伊人久久婷婷五月综合97色 | 午夜精品一区二区三区的区别 | 爽爽影院免费观看 | 亚洲精品国产第一综合99久久 | 国语自产偷拍精品视频偷 | 久久精品国产99久久6动漫 | 亚无码乱人伦一区二区 | 中文字幕无码av波多野吉衣 | 亚洲精品久久久久久久久久久 | 日韩精品久久久肉伦网站 | 野狼第一精品社区 | 色老头在线一区二区三区 | 中国大陆精品视频xxxx | 久久久www成人免费毛片 | 久久人人爽人人人人片 | 久9re热视频这里只有精品 | 久久99精品久久久久婷婷 | 欧美日韩视频无码一区二区三 | 成人免费视频视频在线观看 免费 | 永久黄网站色视频免费直播 | 7777奇米四色成人眼影 | 一二三四社区在线中文视频 | а√资源新版在线天堂 | 牲欲强的熟妇农村老妇女视频 | 人人妻人人澡人人爽欧美一区九九 | 网友自拍区视频精品 | 自拍偷自拍亚洲精品被多人伦好爽 | 在线精品亚洲一区二区 | 精品久久久中文字幕人妻 | 婷婷色婷婷开心五月四房播播 | 午夜不卡av免费 一本久久a久久精品vr综合 | 国产精品丝袜黑色高跟鞋 | 国内精品久久久久久中文字幕 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 丰满少妇熟乱xxxxx视频 | 免费播放一区二区三区 | 日韩精品无码一区二区中文字幕 | 俺去俺来也www色官网 | 精品厕所偷拍各类美女tp嘘嘘 | 人人澡人摸人人添 | 中文字幕乱妇无码av在线 | 国产人妻久久精品二区三区老狼 | 小泽玛莉亚一区二区视频在线 | 精品久久久无码人妻字幂 | 国产极品视觉盛宴 | 久久五月精品中文字幕 | 久久无码中文字幕免费影院蜜桃 | 欧美亚洲国产一区二区三区 | 久久久久成人片免费观看蜜芽 | 精品欧洲av无码一区二区三区 | 精品乱子伦一区二区三区 | 老司机亚洲精品影院无码 | 国产人妻人伦精品1国产丝袜 | 午夜免费福利小电影 | 国产高清不卡无码视频 | 亚洲自偷自拍另类第1页 | 国产精品igao视频网 | 亚洲一区av无码专区在线观看 | 国产麻豆精品一区二区三区v视界 | 内射老妇bbwx0c0ck | 中文字幕日产无线码一区 | 大乳丰满人妻中文字幕日本 | 特大黑人娇小亚洲女 | 国产乱人偷精品人妻a片 | 美女黄网站人色视频免费国产 | 最新版天堂资源中文官网 | 久久精品中文闷骚内射 | av人摸人人人澡人人超碰下载 | 全黄性性激高免费视频 | 国产精品久久国产三级国 | 亚洲国产精品美女久久久久 | 国产成人综合美国十次 | 国产综合在线观看 | 又大又硬又黄的免费视频 | 久久亚洲日韩精品一区二区三区 | 中文字幕乱码人妻无码久久 | 亚洲综合无码久久精品综合 | 久久亚洲日韩精品一区二区三区 | 国产办公室秘书无码精品99 | 亚洲成a人片在线观看无码3d | 成人欧美一区二区三区 | 亚洲伊人久久精品影院 | 亚洲 激情 小说 另类 欧美 | 国内精品久久久久久中文字幕 | 亚洲国产精品久久久天堂 | 国产两女互慰高潮视频在线观看 | 日本丰满熟妇videos | 亚洲一区av无码专区在线观看 | 桃花色综合影院 | 国产人妻精品午夜福利免费 | 精品乱码久久久久久久 | 欧美自拍另类欧美综合图片区 | 亚洲精品国产精品乱码不卡 | 色五月丁香五月综合五月 | 国产精品美女久久久网av | 久久久无码中文字幕久... | 久久综合给合久久狠狠狠97色 | 午夜福利试看120秒体验区 | 国产精品99久久精品爆乳 | 2020最新国产自产精品 | 国产深夜福利视频在线 | 日韩av无码一区二区三区不卡 | 精品偷拍一区二区三区在线看 | 亚洲天堂2017无码中文 | 久久精品无码一区二区三区 | 中文亚洲成a人片在线观看 | 精品水蜜桃久久久久久久 | 免费观看的无遮挡av | 欧美日本精品一区二区三区 | 99久久精品午夜一区二区 | 亚洲精品一区二区三区婷婷月 | 精品成在人线av无码免费看 | aⅴ在线视频男人的天堂 | 免费无码肉片在线观看 | 人妻无码αv中文字幕久久琪琪布 | 麻豆果冻传媒2021精品传媒一区下载 | 对白脏话肉麻粗话av | 国产亚洲人成a在线v网站 | 亚洲欧美中文字幕5发布 | 一个人免费观看的www视频 | 给我免费的视频在线观看 | 国产精品久久久 | 综合网日日天干夜夜久久 | 欧美激情一区二区三区成人 | 亚洲日本在线电影 | 亚洲乱码日产精品bd | 奇米影视888欧美在线观看 | 色妞www精品免费视频 | 亚洲精品一区二区三区在线观看 | 亚洲va中文字幕无码久久不卡 | 国产成人av免费观看 | 精品久久综合1区2区3区激情 | 红桃av一区二区三区在线无码av | 一个人看的视频www在线 | 国产午夜福利亚洲第一 | 亚洲国产精品久久久久久 | 国产精品久久久久久亚洲影视内衣 | 国产精品毛多多水多 | 天海翼激烈高潮到腰振不止 | а天堂中文在线官网 | 精品亚洲韩国一区二区三区 | 色诱久久久久综合网ywww | 国产午夜无码精品免费看 | 强伦人妻一区二区三区视频18 | 无码帝国www无码专区色综合 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 日本大香伊一区二区三区 | 对白脏话肉麻粗话av | 性色av无码免费一区二区三区 | 亚洲国产一区二区三区在线观看 | 久久精品国产精品国产精品污 | 欧美日韩一区二区三区自拍 | 窝窝午夜理论片影院 | 东京无码熟妇人妻av在线网址 | 日韩成人一区二区三区在线观看 | 小sao货水好多真紧h无码视频 | 国产精品二区一区二区aⅴ污介绍 | 国产精品无码一区二区三区不卡 | 国产成人精品视频ⅴa片软件竹菊 | 欧洲熟妇色 欧美 | 国产无遮挡又黄又爽又色 | 88国产精品欧美一区二区三区 | 欧美兽交xxxx×视频 | 97夜夜澡人人爽人人喊中国片 | 久久99精品国产.久久久久 | 亚洲精品久久久久久一区二区 | 色欲综合久久中文字幕网 | 日本精品久久久久中文字幕 | 精品国产乱码久久久久乱码 | 国产精品成人av在线观看 | 婷婷色婷婷开心五月四房播播 | 99riav国产精品视频 | 六月丁香婷婷色狠狠久久 | 欧美丰满熟妇xxxx性ppx人交 | 国产疯狂伦交大片 | 精品国产精品久久一区免费式 | 高清无码午夜福利视频 | 少妇人妻av毛片在线看 | 少妇高潮喷潮久久久影院 | 无码任你躁久久久久久久 | 日本一本二本三区免费 | 亚洲国产av精品一区二区蜜芽 | 久久97精品久久久久久久不卡 | 亚洲熟熟妇xxxx | 国产亚洲美女精品久久久2020 | 国产免费观看黄av片 | 亚洲精品www久久久 | 国产又粗又硬又大爽黄老大爷视 | 男女猛烈xx00免费视频试看 | 国内老熟妇对白xxxxhd | 色老头在线一区二区三区 | 婷婷六月久久综合丁香 | 人妻与老人中文字幕 | 无码成人精品区在线观看 | 免费中文字幕日韩欧美 | 国产精品久久久午夜夜伦鲁鲁 | 狠狠噜狠狠狠狠丁香五月 | 国产午夜手机精彩视频 | 亚洲小说图区综合在线 | 国产凸凹视频一区二区 | 国产精品久久福利网站 | 日韩精品无码一区二区中文字幕 | 精品乱子伦一区二区三区 | 永久免费观看美女裸体的网站 | 性色av无码免费一区二区三区 | 小泽玛莉亚一区二区视频在线 | 日产国产精品亚洲系列 | 人人妻人人澡人人爽欧美一区九九 | 曰本女人与公拘交酡免费视频 | 亚洲国产欧美国产综合一区 | 亚洲の无码国产の无码步美 | 婷婷六月久久综合丁香 | 人妻尝试又大又粗久久 | 捆绑白丝粉色jk震动捧喷白浆 | 老太婆性杂交欧美肥老太 | 俺去俺来也www色官网 | 激情亚洲一区国产精品 | 国产人妻精品一区二区三区不卡 | 未满小14洗澡无码视频网站 | 老太婆性杂交欧美肥老太 | 十八禁真人啪啪免费网站 | 色欲久久久天天天综合网精品 | 麻豆成人精品国产免费 | 国产成人一区二区三区在线观看 | 岛国片人妻三上悠亚 | 窝窝午夜理论片影院 | 亚洲男女内射在线播放 | 四虎国产精品一区二区 | 久久午夜无码鲁丝片秋霞 | 久久婷婷五月综合色国产香蕉 | 亚洲一区二区三区偷拍女厕 | 国产卡一卡二卡三 | 欧美zoozzooz性欧美 | 一区二区三区乱码在线 | 欧洲 | 亚洲中文字幕av在天堂 | 精品久久久久香蕉网 | 欧美亚洲日韩国产人成在线播放 | 无码国产激情在线观看 | 久久亚洲国产成人精品性色 | 国产无遮挡又黄又爽免费视频 | 国产av一区二区三区最新精品 | 少妇厨房愉情理9仑片视频 | 欧洲欧美人成视频在线 | 日本又色又爽又黄的a片18禁 | 亚洲区欧美区综合区自拍区 | 久久人人爽人人人人片 | 精品亚洲韩国一区二区三区 | 乱码av麻豆丝袜熟女系列 | 夜夜影院未满十八勿进 | 国产精品国产自线拍免费软件 | аⅴ资源天堂资源库在线 | 成年美女黄网站色大免费视频 | 精品国产av色一区二区深夜久久 | 四虎4hu永久免费 | 四虎国产精品一区二区 | 熟妇人妻激情偷爽文 | 久久久久久亚洲精品a片成人 | 一个人看的www免费视频在线观看 | 无码纯肉视频在线观看 | 国产人妖乱国产精品人妖 | 人人妻人人澡人人爽精品欧美 | 国产极品美女高潮无套在线观看 | 国产成人综合在线女婷五月99播放 | 久久精品国产一区二区三区 | 亚洲精品综合一区二区三区在线 | 丰满人妻精品国产99aⅴ | 无码免费一区二区三区 | 免费看少妇作爱视频 | 男人和女人高潮免费网站 | 人妻人人添人妻人人爱 | 久久久久久久女国产乱让韩 | 女人和拘做爰正片视频 | 丰满少妇人妻久久久久久 | 久久99精品久久久久婷婷 | 久久久久久a亚洲欧洲av冫 | 97se亚洲精品一区 | 亚洲精品综合一区二区三区在线 | 日本在线高清不卡免费播放 | 内射后入在线观看一区 | 少妇久久久久久人妻无码 | 国产亚洲精品精品国产亚洲综合 | 中文字幕乱码人妻二区三区 | 亚洲人交乣女bbw | 久久99精品久久久久久 | 美女张开腿让人桶 | 99久久精品午夜一区二区 | 鲁一鲁av2019在线 | 18精品久久久无码午夜福利 | 午夜精品久久久久久久 | 国产区女主播在线观看 | 一本久道高清无码视频 | 国产明星裸体无码xxxx视频 | 男女超爽视频免费播放 | 色窝窝无码一区二区三区色欲 | 午夜丰满少妇性开放视频 | 亚洲一区二区三区国产精华液 | 亚洲欧美日韩成人高清在线一区 | 亚洲 另类 在线 欧美 制服 | 国产午夜手机精彩视频 | 久久精品国产大片免费观看 | 国产在线一区二区三区四区五区 | 久久熟妇人妻午夜寂寞影院 | 日韩欧美中文字幕公布 | 草草网站影院白丝内射 | av无码久久久久不卡免费网站 | 久久久久久亚洲精品a片成人 | 成人免费无码大片a毛片 | 日本乱偷人妻中文字幕 | 国产成人无码av在线影院 | 亚洲 日韩 欧美 成人 在线观看 | 日日噜噜噜噜夜夜爽亚洲精品 | 成人综合网亚洲伊人 | 99久久精品日本一区二区免费 | 狠狠色噜噜狠狠狠7777奇米 | 无码精品国产va在线观看dvd | 亚洲色大成网站www国产 | 国内精品久久毛片一区二区 | 久久精品99久久香蕉国产色戒 | 99视频精品全部免费免费观看 | 亚洲一区二区三区四区 | 波多野结衣aⅴ在线 | 18黄暴禁片在线观看 | 黑人巨大精品欧美一区二区 | 人妻中文无码久热丝袜 | 成人性做爰aaa片免费看不忠 | 无码人妻丰满熟妇区五十路百度 | 午夜福利不卡在线视频 | 98国产精品综合一区二区三区 | 性欧美牲交在线视频 | 久久婷婷五月综合色国产香蕉 | 蜜桃视频韩日免费播放 | 国产精品内射视频免费 | 国语自产偷拍精品视频偷 | 日日麻批免费40分钟无码 | 小sao货水好多真紧h无码视频 | 人妻插b视频一区二区三区 | 377p欧洲日本亚洲大胆 | 久久综合激激的五月天 | 中文字幕人妻丝袜二区 | 99视频精品全部免费免费观看 | 久久99久久99精品中文字幕 | 国产区女主播在线观看 | 麻豆人妻少妇精品无码专区 | 最近免费中文字幕中文高清百度 | 国产成人亚洲综合无码 | 丁香花在线影院观看在线播放 | 日韩少妇内射免费播放 | 精品国产青草久久久久福利 | 99国产欧美久久久精品 | 国产精品视频免费播放 | 九九久久精品国产免费看小说 | 99精品国产综合久久久久五月天 | 在线a亚洲视频播放在线观看 | 老熟女乱子伦 | 国内精品久久毛片一区二区 | 国产香蕉97碰碰久久人人 | 少妇激情av一区二区 | 国产69精品久久久久app下载 | 日本爽爽爽爽爽爽在线观看免 | 亚洲第一网站男人都懂 | 国产欧美熟妇另类久久久 | 妺妺窝人体色www婷婷 | 熟妇人妻无乱码中文字幕 | 妺妺窝人体色www婷婷 | 伊在人天堂亚洲香蕉精品区 | 清纯唯美经典一区二区 | 亚洲精品www久久久 | 日本一卡2卡3卡四卡精品网站 | 久久天天躁狠狠躁夜夜免费观看 | 国产69精品久久久久app下载 | 日产国产精品亚洲系列 | 狠狠色噜噜狠狠狠狠7777米奇 | 少妇性l交大片 | 特大黑人娇小亚洲女 | 欧美日本免费一区二区三区 | 精品无码国产自产拍在线观看蜜 | 国产一精品一av一免费 | 熟妇人妻无乱码中文字幕 | 国产亚洲精品久久久久久 | 天天躁日日躁狠狠躁免费麻豆 | 国产精品久久久一区二区三区 | 丰满少妇高潮惨叫视频 | 无码人妻精品一区二区三区不卡 | 人妻无码αv中文字幕久久琪琪布 | 人妻天天爽夜夜爽一区二区 | 奇米影视7777久久精品人人爽 | 国产亚洲精品久久久闺蜜 | 国产成人亚洲综合无码 | 天天躁日日躁狠狠躁免费麻豆 | 精品无码成人片一区二区98 | 97资源共享在线视频 | 伊人久久婷婷五月综合97色 | 亚洲综合无码一区二区三区 | 丰满少妇人妻久久久久久 | 狠狠cao日日穞夜夜穞av | 扒开双腿吃奶呻吟做受视频 | 亚洲gv猛男gv无码男同 | 欧美日韩亚洲国产精品 | 丰满人妻一区二区三区免费视频 | 国产激情无码一区二区app | 欧美35页视频在线观看 | 天干天干啦夜天干天2017 | 亚洲综合无码久久精品综合 | 最新版天堂资源中文官网 | 激情五月综合色婷婷一区二区 | 久久99精品国产麻豆 | 水蜜桃av无码 | 国产精品人人爽人人做我的可爱 | 国内丰满熟女出轨videos | 精品国产aⅴ无码一区二区 | 荫蒂被男人添的好舒服爽免费视频 | 亚洲精品中文字幕久久久久 | 免费看男女做好爽好硬视频 | 久久久久亚洲精品中文字幕 | 亚洲色无码一区二区三区 | 亚洲一区av无码专区在线观看 | 亚洲乱码日产精品bd | 精品国产国产综合精品 | 成人综合网亚洲伊人 | 成人亚洲精品久久久久软件 | 国产人妻精品一区二区三区不卡 | 国产农村妇女高潮大叫 | 2020久久超碰国产精品最新 | 久久精品国产精品国产精品污 | 风流少妇按摩来高潮 | 欧美人妻一区二区三区 | 久久久无码中文字幕久... | 黑人粗大猛烈进出高潮视频 | 在线精品亚洲一区二区 | 久在线观看福利视频 | 国产 浪潮av性色四虎 | 少妇无码av无码专区在线观看 | 精品国产青草久久久久福利 | 国产小呦泬泬99精品 | 在线精品亚洲一区二区 | 成人动漫在线观看 | 欧美精品无码一区二区三区 | 久久久久人妻一区精品色欧美 | 少妇无码吹潮 | 国产片av国语在线观看 | 水蜜桃亚洲一二三四在线 | 国产人妻人伦精品1国产丝袜 | 久久久无码中文字幕久... | 国产国语老龄妇女a片 | 成人综合网亚洲伊人 | 高潮喷水的毛片 | 国产无套内射久久久国产 | 久久精品人人做人人综合 | 亚洲中文无码av永久不收费 | 天天拍夜夜添久久精品 | 亚洲精品久久久久中文第一幕 | 伊人色综合久久天天小片 | 女人被男人躁得好爽免费视频 | 丰满人妻一区二区三区免费视频 | 国产精华av午夜在线观看 | 99久久久国产精品无码免费 | 精品久久久无码中文字幕 | 又紧又大又爽精品一区二区 | 色狠狠av一区二区三区 | 国产人妻久久精品二区三区老狼 | 免费人成网站视频在线观看 | 日本乱人伦片中文三区 | 久久精品国产99精品亚洲 | 色婷婷欧美在线播放内射 | 国产在线精品一区二区高清不卡 | 性开放的女人aaa片 | 久9re热视频这里只有精品 | 国产乱子伦视频在线播放 | 中文字幕人妻无码一夲道 | 国产成人综合在线女婷五月99播放 | 青青草原综合久久大伊人精品 | 99麻豆久久久国产精品免费 | 色婷婷av一区二区三区之红樱桃 | 国产一区二区三区日韩精品 | 任你躁国产自任一区二区三区 | 亚洲经典千人经典日产 | 日本xxxx色视频在线观看免费 | 无码播放一区二区三区 | 国产一精品一av一免费 | 少妇人妻av毛片在线看 | 水蜜桃亚洲一二三四在线 | 亚洲日本一区二区三区在线 | 亚洲 高清 成人 动漫 | 亚洲s色大片在线观看 | 精品一区二区三区无码免费视频 | 国产特级毛片aaaaaa高潮流水 | 国产精品国产自线拍免费软件 | 中文字幕av无码一区二区三区电影 | 欧美日本免费一区二区三区 | 大肉大捧一进一出好爽视频 | 国产黑色丝袜在线播放 | 国产欧美熟妇另类久久久 | 精品一区二区三区波多野结衣 | 欧洲熟妇色 欧美 | 国产精品无码成人午夜电影 | 人人爽人人澡人人人妻 | 亚洲区小说区激情区图片区 | 精品欧洲av无码一区二区三区 | 一本大道久久东京热无码av | 精品久久久无码中文字幕 | 人妻夜夜爽天天爽三区 | 欧美精品无码一区二区三区 | 免费人成在线视频无码 | 中文精品无码中文字幕无码专区 | 精品国产一区二区三区av 性色 | 亚洲va欧美va天堂v国产综合 | 久久综合狠狠综合久久综合88 | 国产精品第一国产精品 | aⅴ在线视频男人的天堂 | 久青草影院在线观看国产 | 亚洲国产成人av在线观看 | 乌克兰少妇xxxx做受 | 亚洲精品成人av在线 | 少妇一晚三次一区二区三区 | 扒开双腿吃奶呻吟做受视频 | 亚洲人交乣女bbw | 亚洲精品午夜国产va久久成人 | 麻豆md0077饥渴少妇 | 中文字幕乱码亚洲无线三区 | 欧美黑人乱大交 | 精品日本一区二区三区在线观看 | 少妇厨房愉情理9仑片视频 | 国产精品第一区揄拍无码 | 无套内射视频囯产 | 爱做久久久久久 | 久久久久成人精品免费播放动漫 | 午夜免费福利小电影 | 又大又硬又爽免费视频 | 久久久国产一区二区三区 | 国产精品无码一区二区三区不卡 | 成熟女人特级毛片www免费 | 色综合久久久无码网中文 | 国产乡下妇女做爰 | 国产高清av在线播放 | 美女张开腿让人桶 | 久久午夜无码鲁丝片午夜精品 | 久久亚洲精品中文字幕无男同 | a在线观看免费网站大全 | av人摸人人人澡人人超碰下载 | 少妇激情av一区二区 | 精品水蜜桃久久久久久久 | 亚洲色成人中文字幕网站 | 97资源共享在线视频 | 国产另类ts人妖一区二区 | 久久精品成人欧美大片 | 午夜性刺激在线视频免费 | 欧美精品无码一区二区三区 | 成 人影片 免费观看 | 欧美性猛交xxxx富婆 | 丰满少妇熟乱xxxxx视频 | 亚洲综合精品香蕉久久网 | 最新国产乱人伦偷精品免费网站 | 中国女人内谢69xxxx | 国产综合久久久久鬼色 | av无码久久久久不卡免费网站 | 久久亚洲中文字幕无码 | 无遮无挡爽爽免费视频 | 日本www一道久久久免费榴莲 | 亚洲一区二区三区四区 | 丰满人妻一区二区三区免费视频 | 学生妹亚洲一区二区 | 国产成人精品一区二区在线小狼 | 婷婷综合久久中文字幕蜜桃三电影 | 精品国产麻豆免费人成网站 | 亚洲一区av无码专区在线观看 | 野狼第一精品社区 | 波多野结衣高清一区二区三区 | 久久久中文字幕日本无吗 | 国产精品人妻一区二区三区四 | 日韩在线不卡免费视频一区 | 国产亚洲欧美在线专区 | 亚洲 a v无 码免 费 成 人 a v | 扒开双腿吃奶呻吟做受视频 | 欧美亚洲国产一区二区三区 | 日本熟妇大屁股人妻 | 亚洲国产欧美在线成人 | 97夜夜澡人人双人人人喊 | 无码中文字幕色专区 | 欧美日韩一区二区三区自拍 | 欧美野外疯狂做受xxxx高潮 | 综合人妻久久一区二区精品 | 精品 日韩 国产 欧美 视频 | 97精品人妻一区二区三区香蕉 | 18精品久久久无码午夜福利 | 久久婷婷五月综合色国产香蕉 | 亚洲国产成人a精品不卡在线 | 国产国语老龄妇女a片 | 国产特级毛片aaaaaaa高清 | 国产精品欧美成人 | www国产亚洲精品久久久日本 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 欧美亚洲日韩国产人成在线播放 | 欧美午夜特黄aaaaaa片 | 亚洲成av人片在线观看无码不卡 | 性欧美牲交在线视频 | 中文字幕乱码亚洲无线三区 | 丰满少妇高潮惨叫视频 | 色诱久久久久综合网ywww | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 国产亚洲美女精品久久久2020 | 国产成人精品优优av | 精品无人区无码乱码毛片国产 | 精品国产一区二区三区av 性色 | 国产精品嫩草久久久久 | 国内精品久久久久久中文字幕 | 亚洲色在线无码国产精品不卡 | 无遮挡啪啪摇乳动态图 | 国产亚洲精品久久久久久国模美 | 2020最新国产自产精品 | 18无码粉嫩小泬无套在线观看 | 久久午夜无码鲁丝片秋霞 | 一本大道久久东京热无码av | 国产无套内射久久久国产 | 中文字幕色婷婷在线视频 | 麻豆精品国产精华精华液好用吗 | 国产午夜福利100集发布 | 国产精品久久久久久亚洲影视内衣 | 久久久久人妻一区精品色欧美 | 无码任你躁久久久久久久 | 久久久婷婷五月亚洲97号色 | 国产精品亚洲专区无码不卡 | 欧美xxxxx精品 | 老太婆性杂交欧美肥老太 | 日韩视频 中文字幕 视频一区 | 男女下面进入的视频免费午夜 | 好男人www社区 | 国产又爽又黄又刺激的视频 | 亚洲va中文字幕无码久久不卡 | 亚洲大尺度无码无码专区 | 狠狠色欧美亚洲狠狠色www | 亚洲乱码国产乱码精品精 | 狠狠色欧美亚洲狠狠色www | 人妻少妇精品无码专区动漫 | 丰满人妻翻云覆雨呻吟视频 | 人妻少妇精品无码专区二区 | 精品久久久久久人妻无码中文字幕 | 国产精品18久久久久久麻辣 | 色一情一乱一伦 | 男人的天堂av网站 | 午夜无码人妻av大片色欲 | 日本成熟视频免费视频 | 亚洲精品综合五月久久小说 | 狠狠色丁香久久婷婷综合五月 | 亚洲中文无码av永久不收费 | а天堂中文在线官网 | 亚洲精品无码人妻无码 | 激情综合激情五月俺也去 | yw尤物av无码国产在线观看 | 亚洲精品久久久久avwww潮水 | 波多野结衣aⅴ在线 | 色爱情人网站 | 亚洲日韩乱码中文无码蜜桃臀网站 | 午夜精品一区二区三区的区别 | 国产高潮视频在线观看 | 亚洲综合色区中文字幕 | 精品人妻人人做人人爽夜夜爽 | 精品国偷自产在线 | 亚洲色无码一区二区三区 | 精品国精品国产自在久国产87 | 亚洲精品美女久久久久久久 | 国产精品久久久久久亚洲毛片 | 一二三四在线观看免费视频 | 最近免费中文字幕中文高清百度 | 国产精品久久精品三级 | 日本熟妇人妻xxxxx人hd | 丰满人妻一区二区三区免费视频 | 西西人体www44rt大胆高清 | 精品国产一区二区三区四区 | 亚洲aⅴ无码成人网站国产app | 国产激情综合五月久久 | 欧美老妇交乱视频在线观看 | a在线亚洲男人的天堂 | 亚洲色www成人永久网址 | 欧美一区二区三区视频在线观看 | 人妻少妇精品视频专区 | 丰满人妻一区二区三区免费视频 | 国产精品亚洲一区二区三区喷水 | 亚洲高清偷拍一区二区三区 | 免费观看黄网站 | 狠狠色噜噜狠狠狠7777奇米 | 欧美丰满少妇xxxx性 | 一区二区三区乱码在线 | 欧洲 | 无码av岛国片在线播放 | 2019nv天堂香蕉在线观看 | 亚洲无人区午夜福利码高清完整版 | 亚洲 激情 小说 另类 欧美 | 老熟妇乱子伦牲交视频 | 老熟妇乱子伦牲交视频 | 欧美成人家庭影院 | 亚洲熟女一区二区三区 | 日韩精品无码一区二区中文字幕 | 久久久久av无码免费网 | 色综合久久88色综合天天 | 中文字幕精品av一区二区五区 | 色偷偷人人澡人人爽人人模 | 亚洲欧美日韩国产精品一区二区 | 亚洲日本一区二区三区在线 | 一本无码人妻在中文字幕免费 | 国产97人人超碰caoprom | 中文亚洲成a人片在线观看 | 清纯唯美经典一区二区 | 内射爽无广熟女亚洲 | 亚洲精品成人av在线 | yw尤物av无码国产在线观看 | 欧美黑人巨大xxxxx | 中文字幕无码免费久久99 | 久久综合久久自在自线精品自 | 免费看少妇作爱视频 | 色一情一乱一伦一区二区三欧美 | 亚洲色无码一区二区三区 | 高潮喷水的毛片 | 精品国产精品久久一区免费式 | 18禁黄网站男男禁片免费观看 | 秋霞特色aa大片 | 黑人巨大精品欧美一区二区 | av在线亚洲欧洲日产一区二区 | 性色欲情网站iwww九文堂 | 国产精品无码mv在线观看 | 色综合天天综合狠狠爱 | 国产真实乱对白精彩久久 | 精品无码国产自产拍在线观看蜜 | 亚洲精品久久久久久久久久久 | 最新国产麻豆aⅴ精品无码 | 亚洲中文字幕久久无码 | 亚洲成av人综合在线观看 | 欧美亚洲日韩国产人成在线播放 | 澳门永久av免费网站 | 国产午夜亚洲精品不卡 | 久久人人97超碰a片精品 | 99精品国产综合久久久久五月天 | 国产9 9在线 | 中文 | 亚洲欧美日韩综合久久久 | 男女作爱免费网站 | 欧美激情内射喷水高潮 | 日本熟妇人妻xxxxx人hd | 亚洲一区二区三区 | 草草网站影院白丝内射 | 亚洲国产欧美日韩精品一区二区三区 | 我要看www免费看插插视频 | 国产成人精品优优av | 亚洲综合久久一区二区 | 丰满少妇熟乱xxxxx视频 | 久久人人97超碰a片精品 | 99久久亚洲精品无码毛片 | 亚洲色欲色欲欲www在线 | 鲁鲁鲁爽爽爽在线视频观看 | 精品欧洲av无码一区二区三区 | 亚洲色在线无码国产精品不卡 | 国产午夜精品一区二区三区嫩草 | 久久久精品456亚洲影院 | 无码免费一区二区三区 | 精品欧洲av无码一区二区三区 | 麻豆果冻传媒2021精品传媒一区下载 | 动漫av网站免费观看 | 99精品无人区乱码1区2区3区 | 又粗又大又硬毛片免费看 | 色欲综合久久中文字幕网 | 欧美三级a做爰在线观看 | 婷婷丁香五月天综合东京热 | 人人爽人人澡人人人妻 | 天堂亚洲免费视频 | 成人女人看片免费视频放人 | 亚洲色欲色欲欲www在线 | 亚洲欧洲日本无在线码 | 青青草原综合久久大伊人精品 | 99久久精品日本一区二区免费 | 国产亚洲tv在线观看 | 中文字幕无码免费久久9一区9 | 夜精品a片一区二区三区无码白浆 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 亚洲中文字幕无码中文字在线 | 亚洲熟妇色xxxxx欧美老妇 | 欧美人妻一区二区三区 | 欧美成人家庭影院 | 久久久久久九九精品久 | 亚洲 欧美 激情 小说 另类 | 黑森林福利视频导航 | 性色av无码免费一区二区三区 | 中文字幕日产无线码一区 | 精品无码一区二区三区爱欲 | 人妻中文无码久热丝袜 | 国产在线aaa片一区二区99 | 亚洲 高清 成人 动漫 | 天天拍夜夜添久久精品 | 成熟女人特级毛片www免费 | 精品无码一区二区三区爱欲 | 奇米影视888欧美在线观看 | 野外少妇愉情中文字幕 | 亚洲爆乳精品无码一区二区三区 | 大屁股大乳丰满人妻 | 亚洲熟妇色xxxxx欧美老妇y | 成年美女黄网站色大免费全看 | 蜜桃臀无码内射一区二区三区 | 国产成人无码专区 | 国产婷婷色一区二区三区在线 | 在线精品亚洲一区二区 | 色窝窝无码一区二区三区色欲 | 欧美黑人性暴力猛交喷水 | 国色天香社区在线视频 | 亲嘴扒胸摸屁股激烈网站 | 欧美三级a做爰在线观看 | 国产农村乱对白刺激视频 | 99国产欧美久久久精品 | aⅴ亚洲 日韩 色 图网站 播放 | a国产一区二区免费入口 | 帮老师解开蕾丝奶罩吸乳网站 | 99久久人妻精品免费二区 | 女人色极品影院 | 精品国产福利一区二区 | 大乳丰满人妻中文字幕日本 | 国产无遮挡又黄又爽又色 | 国产精品二区一区二区aⅴ污介绍 | 一二三四在线观看免费视频 | 又湿又紧又大又爽a视频国产 | 国产福利视频一区二区 | 欧美性猛交内射兽交老熟妇 | 婷婷丁香五月天综合东京热 | 波多野结衣高清一区二区三区 | 欧美丰满熟妇xxxx性ppx人交 | 无码播放一区二区三区 | 久久亚洲日韩精品一区二区三区 | 免费人成网站视频在线观看 | 天天做天天爱天天爽综合网 | 国产av无码专区亚洲a∨毛片 | 亚洲一区二区三区播放 | 日本大香伊一区二区三区 | 国产成人人人97超碰超爽8 | 无码精品人妻一区二区三区av | av无码不卡在线观看免费 | 九九综合va免费看 | 未满成年国产在线观看 | 人人澡人人妻人人爽人人蜜桃 | 久久久精品国产sm最大网站 | 人人妻人人澡人人爽精品欧美 | 无码精品国产va在线观看dvd | 欧美变态另类xxxx | 久久99精品国产.久久久久 | 国产农村乱对白刺激视频 | 高中生自慰www网站 | 久久精品中文字幕一区 | 国产成人精品一区二区在线小狼 | 1000部夫妻午夜免费 | 粉嫩少妇内射浓精videos | 国产又粗又硬又大爽黄老大爷视 | av人摸人人人澡人人超碰下载 | 中文字幕av无码一区二区三区电影 | 国产精品久久国产三级国 | 久久亚洲中文字幕无码 | 成人女人看片免费视频放人 | 午夜精品久久久久久久久 | 奇米影视888欧美在线观看 | 高清国产亚洲精品自在久久 | 久久精品国产精品国产精品污 | 久久久久人妻一区精品色欧美 | 性生交片免费无码看人 | 国产成人无码午夜视频在线观看 | 少妇无套内谢久久久久 | 四虎4hu永久免费 | 精品水蜜桃久久久久久久 | www国产精品内射老师 | 一本久道久久综合婷婷五月 | 免费中文字幕日韩欧美 | 免费人成在线视频无码 | 亚洲国产精品无码一区二区三区 | 国产精品va在线观看无码 | 又大又紧又粉嫩18p少妇 | 图片小说视频一区二区 | 午夜免费福利小电影 | 国产精品美女久久久 | 久久亚洲精品成人无码 | 强伦人妻一区二区三区视频18 | 无码人妻精品一区二区三区下载 | 麻豆精产国品 | 亚洲精品无码人妻无码 | 精品无码一区二区三区爱欲 | 六十路熟妇乱子伦 | 婷婷五月综合缴情在线视频 | 国产艳妇av在线观看果冻传媒 | 成人免费无码大片a毛片 | 免费观看的无遮挡av | 国产午夜福利100集发布 | 色妞www精品免费视频 | 一本精品99久久精品77 | 牲交欧美兽交欧美 | 人妻少妇精品无码专区二区 | 精品国产成人一区二区三区 | 任你躁在线精品免费 | 秋霞成人午夜鲁丝一区二区三区 | 欧美精品免费观看二区 | 人妻与老人中文字幕 | 麻豆蜜桃av蜜臀av色欲av | 日韩精品成人一区二区三区 | 窝窝午夜理论片影院 | 亚洲成a人一区二区三区 | 欧美精品一区二区精品久久 | 少妇激情av一区二区 | 国产欧美熟妇另类久久久 | 久久国产精品二国产精品 | 精品午夜福利在线观看 | 一本色道久久综合狠狠躁 | 日韩欧美中文字幕在线三区 | 久久午夜无码鲁丝片午夜精品 | 亚洲欧美国产精品专区久久 | 97久久国产亚洲精品超碰热 | 久久精品中文字幕大胸 | 在线看片无码永久免费视频 | 国产精品亚洲综合色区韩国 | 奇米影视7777久久精品人人爽 | √天堂资源地址中文在线 | 亚洲综合在线一区二区三区 | 亚洲欧洲中文日韩av乱码 | 熟妇人妻激情偷爽文 | 亚洲国产av精品一区二区蜜芽 | 漂亮人妻洗澡被公强 日日躁 | 免费看男女做好爽好硬视频 | 国产免费无码一区二区视频 | 无套内射视频囯产 | 色婷婷欧美在线播放内射 | 亚洲色欲色欲天天天www | a片免费视频在线观看 | 夫妻免费无码v看片 | 在线欧美精品一区二区三区 | 日韩人妻无码中文字幕视频 | 无码人妻少妇伦在线电影 | 自拍偷自拍亚洲精品10p | 色综合视频一区二区三区 | 宝宝好涨水快流出来免费视频 | 精品国产一区二区三区av 性色 | 色情久久久av熟女人妻网站 | 乱人伦中文视频在线观看 | 日日橹狠狠爱欧美视频 | 久久aⅴ免费观看 | 在线a亚洲视频播放在线观看 | 久久综合狠狠综合久久综合88 | 国产偷国产偷精品高清尤物 | 大地资源中文第3页 | 国产莉萝无码av在线播放 | 国语精品一区二区三区 | 无人区乱码一区二区三区 | 国产真人无遮挡作爱免费视频 | 精品一区二区不卡无码av | 四虎国产精品免费久久 | 亚洲国产精品一区二区美利坚 | 日韩 欧美 动漫 国产 制服 | 白嫩日本少妇做爰 | 国产超碰人人爽人人做人人添 | 欧美人与牲动交xxxx | 国语自产偷拍精品视频偷 | 成人影院yy111111在线观看 | 国产激情无码一区二区 | 久久天天躁狠狠躁夜夜免费观看 | 人人妻人人澡人人爽欧美精品 | 久久国产精品偷任你爽任你 | 国精品人妻无码一区二区三区蜜柚 | 小泽玛莉亚一区二区视频在线 | 纯爱无遮挡h肉动漫在线播放 | 男人扒开女人内裤强吻桶进去 | 免费看男女做好爽好硬视频 | 久久久久免费精品国产 | 亚洲精品国产第一综合99久久 | 成年美女黄网站色大免费全看 | 欧美日韩一区二区综合 | 国产成人精品三级麻豆 | 国产精品-区区久久久狼 | 国产精品久久久一区二区三区 | 一本久久a久久精品亚洲 | 在线播放无码字幕亚洲 | 国产精品99爱免费视频 | 日本精品少妇一区二区三区 | 国产精品无套呻吟在线 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 国产卡一卡二卡三 | 国产综合久久久久鬼色 | 黄网在线观看免费网站 | 欧美日本免费一区二区三区 | 野狼第一精品社区 | 中文字幕+乱码+中文字幕一区 | 老子影院午夜精品无码 | 国产精品人人爽人人做我的可爱 | 日韩亚洲欧美中文高清在线 | 久久久中文久久久无码 | 日韩精品成人一区二区三区 | 国产精品久久久午夜夜伦鲁鲁 | 国产又爽又猛又粗的视频a片 | 成人亚洲精品久久久久 | 丁香啪啪综合成人亚洲 | 性欧美大战久久久久久久 | 久久国产精品萌白酱免费 | 精品 日韩 国产 欧美 视频 | 野外少妇愉情中文字幕 | 国产后入清纯学生妹 | 国产情侣作爱视频免费观看 | 麻豆国产人妻欲求不满 | 亚洲国产成人av在线观看 | 欧美老妇交乱视频在线观看 | 亚洲成av人影院在线观看 | 中文字幕av无码一区二区三区电影 | 又大又紧又粉嫩18p少妇 | 国产精品va在线播放 | 亚洲一区二区三区含羞草 | 波多野42部无码喷潮在线 | 日本一本二本三区免费 | 国产精品福利视频导航 | 激情五月综合色婷婷一区二区 | 偷窥村妇洗澡毛毛多 | 美女黄网站人色视频免费国产 | 撕开奶罩揉吮奶头视频 | 国产成人综合色在线观看网站 | 色婷婷久久一区二区三区麻豆 | 日韩精品成人一区二区三区 | 国产熟妇高潮叫床视频播放 | 帮老师解开蕾丝奶罩吸乳网站 | 亚洲色偷偷偷综合网 |