java发请求失败,java http get方式请求失败

代码很简单,就是发送一个get请求。

url是没问题的,手动打开获取数据,格式是这样的:

{“msg”:”success”,”code”:0,”money”:0.02,”maxCode”:40,”token”:”BAA8FE9AD2B0B5E04A3832D8B7505B96A3C9″}

但是用代码请求一直不成功,conn.getResponseCode() 根本获取不到状态码。

根本想不明白什么原因。今天我发现写的其他get请求都没成功,以前写的可以

try {

URL url=new URL("http://www.huli667.com:81/sms/api/login?username=api-ArIGbJDn&password=a411724");

HttpURLConnection conn=(HttpURLConnection) url.openConnection();

conn.setConnectTimeout(5000);

conn.setRequestMethod("GET");

int code=conn.getResponseCode();

if(code==200){

InputStream in=conn.getInputStream();

String result=ParseStream.readInputStream(in);

System.out.println(result);

}

} catch (MalformedURLException e) {

} catch (ProtocolException e) {

} catch (IOException e) {

}

回答

public static void main(String[] args) {

try {

URL url=new URL("http://www.huli667.com:81/sms/api/login?username=api-ArIGbJDn&password=a411724");

HttpURLConnection conn=(HttpURLConnection) url.openConnection();

conn.setConnectTimeout(5000);

conn.setRequestMethod("GET");

conn.setRequestProperty("User-Agent","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36");

int code=conn.getResponseCode();

if(code==200){

String res = "",line="";

InputStream in=conn.getInputStream();

BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(in,"UTF-8"));

while( (line = bufferedReader.readLine()) != null )

{

res += line;

}

System.out.println(res);

bufferedReader.close();

in.close();

}

conn.disconnect();

} catch (Exception e){

e.printStackTrace();

}

}

发现用HTTP测试正常,但是用你的代码就不行,然后我加了个请求头参数,

e37f3c7d61190c91bdd112ac0daecf3f.png

应该是你服务端上面的判断

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值