0


HttpURLConnection 发送PUT请求,设置请求头参数 json请求体_url 安全 请求 put

2、GET请求通常用于获取信息,所以应该是安全的、幂等的。

3、请求数据表现在URL上,以名称/值的形式发送。对请求的长度有限制,

4、在IE和Opera等浏览器会产生URL缓存。如果不增加冗余的请求参数,响应会返回缓存中数据,导致结果不一致。

5、安全性低。是直接跟在请求头的后面而且是明文

三、POST方法

  • 标注已存在的资源;
  • 提交数据
  • 通过追加的操作来拓展数据库

POST方法有以下特点:

1、主要用于向服务器提交数据,而GET主要用于获取;

2、数据封装在请求中,而不是URL中,因此没有长度限制;

3、不能缓存,而GET请求会缓存,在IE等浏览器中会直接返回缓存数据。

四、PUT方法

PUT方法通常用于向服务器发送请求,如果URI不存在,则要求服务器根据请求创建资源,如果存在,服务器就接受请求内容,并修改URI资源的原始版本。就是通常俗称的上传资源。

HTTP/1.1没有定义一个PUT请求如何影响原始服务器的状态,PUT请求必须遵守信息传输要求。

直接上代码:

public static void getUploadInformation(String path,String obj) throws IOException, JSONException {
//创建连接
URL url = new URL(path);
HttpURLConnection connection ;
StringBuffer sbuffer=null;
try {
//添加 请求内容
connection= (HttpURLConnection) url.openConnection();
//设置http连接属性
connection.setDoOutput(true);// http正文内,因此需要设为true, 默认情况下是false;
connection.setDoInput(true);// 设置是否从httpUrlConnection读入,默认情况下是true;
connection.setRequestMethod(“PUT”); // 可以根据需要 提交 GET、POST、DELETE、PUT等http提供的功能
//connection.setUseCaches(false);//设置缓存,注意设置请求方法为post不能用缓存
// connection.setInstanceFollowRedirects(true);

connection.setRequestProperty(“Host”, “”); //设置请 求的服务器网址,域名,例如...
connection.setRequestProperty(“Content-Type”, " application/json");//设定 请求格式 json,也可以设定xml格式的
connection.setRequestProperty(“Accept-Charset”, “utf-8”); //设置编码语言
connection.setRequestProperty(“X-Auth-Token”, “token”); //设置请求的token
connection.setRequestProperty(“Connection”, “keep-alive”); //设置连接的状态

 connection.setRequestProperty("Transfer-Encoding", "chunked");//设置传输编码

connection.setRequestProperty(“Content-Length”, obj.toString().getBytes().length + “”); //设置文件请求的长度

connection.setReadTimeout(10000);//设置读取超时时间

connection.setConnectTimeout(10000);//设置连接超时时间

connection.connect();

OutputStream out = connection.getOutputStream();//向对象输出流写出数据,这些数据将存到内存缓冲区中

out.write(obj.toString().getBytes()); //out.write(new String(“测试数据”).getBytes()); //刷新对象输出流,将任何字节都写入潜在的流中

out.flush();

// 关闭流对象,此时,不能再向对象输出流写入任何数据,先前写入的数据存在于内存缓冲区中

out.close();

//读取响应

if (connection.getResponseCode()==200) {

 // 从服务器获得一个输入流

InputStreamReader inputStream =new InputStreamReader(connection.getInputStream());//调用HttpURLConnection连接对象的getInputStream()函数, 将内存缓冲区中封装好的完整的HTTP请求电文发送到服务端。
BufferedReader reader = new BufferedReader(inputStream);

String lines; sbuffer= new StringBuffer(“”);

while ((lines = reader.readLine()) != null) {

lines = new String(lines.getBytes(), “utf-8”);

sbuffer.append(lines); }

reader.close();

}else{

     Log.i(*TAG*,"请求失败"+connection.getResponseCode());  

}

//断开连接

connection.disconnect();

} catch (IOException e) {

       e.printStackTrace();  

}

}

json数据
public static String QueryLoginBody(String type,String userid,String checksum){
    String json="{\"type\":\""+type+"\","+"\"jid\":\""+userid+"\","+"\"checkSum\":\""+checksum+"\"}";
 return json;
}
调用方法,输入要传入的参数,然后直接把json数据放进去就好了
String json=AppUtils.QueryLoginBody("login","usr","123132");
AppUtils.getUploadInformation("http://www.xxx.com", json);

参考链接:

http://blog.csdn.net/CrystalDestiny/article/details/46469465

StackOverflow论坛:

标签: json 安全

本文转载自: https://blog.csdn.net/2401_87204876/article/details/142347701
版权归原作者 2401_87204876 所有, 如有侵权,请联系我们删除。

“HttpURLConnection 发送PUT请求,设置请求头参数 json请求体_url 安全 请求 put”的评论:

还没有评论