jsp页面请求一个接口获取返回json对象

J2EE 码拜 8年前 (2016-03-18) 2215次浏览
rt,不要用js,在jsp页面用java代码实现
解决方案

50

<%
%>

50

<%
String retContent = "";
try{
    String url = "url";
	// 打开和URL之间的连接
	URLConnection connection = realUrl.openConnection();
	// 设置通用的请求属性
	connection.setRequestProperty("accept", "*/*");
	connection.setRequestProperty("connection", "Keep-Alive");
	connection.setRequestProperty("user-agent",
					"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
	// 建立实际的连接
	connection.connect();
        BufferedReader in = new BufferedReader(new InputStreamReader(
					connection.getInputStream()));
	String line;
	while ((line = in.readLine()) != null) {
		retContent += line;
	}
}catch(Exception e){
}
// 输出请求结果
out.println(retContent);
%>

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明jsp页面请求一个接口获取返回json对象
喜欢 (0)
[1034331897@qq.com]
分享 (0)