java以json格式向后台服务器接口发送请求的实例
作者:快快快看看你 时间:2023-05-01 01:47:08
代码如下:
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import net.sf.json.JSONObject;
public class InterfaceRequest {
//模拟向腾讯云发送接口
//接口
private final static String URL = "https://console.tim.qq.com/v4/im_open_login_svc/account_import?";
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
//连接服务器
HttpURLConnection connection = connection(URL);
DataOutputStream out = new DataOutputStream(
connection.getOutputStream());
JSONObject obj = new JSONObject();
obj.element("Identifier", "hehe");
System.out.println(obj.toString());
// 向腾讯请求传入编码为UTF-8格式的json数据
out.write(obj.toString().getBytes("UTF-8"));
out.flush();
out.close();
//获得服务器返回的结果
BufferedReader reader = new BufferedReader(new InputStreamReader(
connection.getInputStream()));
String lines;
StringBuffer sb = new StringBuffer("");
while ((lines = reader.readLine()) != null) {
lines = new String(lines.getBytes(), "utf-8");
sb.append(lines);
}
reader.close();
}
public static HttpURLConnection connection(String URL
) throws IOException {
URL url = new URL(URL);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setRequestMethod("POST");
connection.setUseCaches(false);
connection.setInstanceFollowRedirects(true);
connection.setRequestProperty("Content-Type",
"application/x-www-form-urlencoded;charset=UTF-8");
connection.connect();
return connection;
// TODO Auto-generated method stub
}
}
来源:http://blog.csdn.net/u012744265/article/details/51923130
标签:java,json,服务器,接口,发送请求
0
投稿
猜你喜欢
Java的Spring框架下的AOP编程模式示例
2023-11-02 00:52:25
webBrowser执行js的方法,并返回值,c#后台取值的实现
2023-12-07 13:29:13
maven仓库中心mirrors配置多个下载中心(执行最快的镜像)
2023-05-04 22:08:33
Struts2 Result 参数详解
2022-04-28 07:54:35
C#中FormsAuthentication用法实例
2023-06-02 14:33:52
Android编程使用WebView实现与Javascript交互的方法【相互调用参数、传值】
2023-12-04 01:39:07
android开发环境遇到adt无法启动的问题分析及解决方法
2023-12-11 13:13:23
深入理解MyBatis中的一级缓存与二级缓存
2022-05-25 09:41:34
Android7.0版本影响开发的改进分析
2022-06-06 03:40:37
通过与Java功能上的对比来学习Go语言
2023-02-18 02:04:53
Maven发布封装到中央仓库时候报错:no default secret key
2022-09-18 17:48:43
举例讲解Java中synchronized关键字的用法
2023-07-01 22:20:19
Android自定义水波纹底部导航的实现
2022-08-23 13:12:35
Android 音乐播放器的开发实例详解
2023-12-07 17:53:10
使用flutter创建可移动的stack小部件功能
2023-06-21 12:28:25
java原生序列化和Kryo序列化性能实例对比分析
2023-11-26 16:04:20
Java实现两人五子棋游戏(五) 判断是否有一方胜出
2022-03-03 18:29:44
C#实现为视频添加水印
2022-02-16 05:30:07
C#打印日志的方法总结
2022-02-08 22:32:00
用Linq从一个集合选取几列得到一个新的集合(可改列名)
2023-08-23 22:48:23