1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package com.whyc.util.tool;
|
| public class HttpReqData {
| public String url;
| public String cookie;
| public String referer;
| public String content_type;
| public String x_requested_with;
| public StringBuffer params;
| public String charset;
| public String boundary;
|
| public HttpReqData() {
| url = "";
| cookie = "";
| referer = "";
| content_type = "";
| x_requested_with = "";
| params = new StringBuffer();
| charset = "utf-8";
| boundary = "";
| }
|
| public HttpReqData(String url) {
| this();
| this.url = url;
| }
|
| }
|
|