废柴傻狗 2014-09-10 08:55 采纳率: 100%
浏览 2974
已采纳

HttpGet抛出异常,不明白!求指导~

想用数据库做一个登录验证的功能,服务器端响应正常,json数据包 {"ret":1,"num":123}
ret是登录正常时的状态值,num是号码:123
url是192.168.1.3:8080/web/getActInfo
params:num=123
通过logcat发现在httpGet中抛出了一个异常,但是搞不明白!!痛苦了一下午求点拨!

public String httpGet(String url, String params) throws Exception
{
String response = null;
if (null!=params&&!params.equals(""))
{

        url += "?" + params;
    }

    int timeoutConnection = 8000;  
    int timeoutSocket = 10000;  
    HttpParams httpParameters = new BasicHttpParams();// Set the timeout in milliseconds until a connection is established.  
    HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);// Set the default socket timeout (SO_TIMEOUT) // in milliseconds which is the timeout for waiting for data.  
    HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);  

    HttpClient httpClient = new DefaultHttpClient(httpParameters);  
    HttpGet httpGet = new HttpGet(url);
    try
    {
        HttpResponse httpResponse = httpClient.execute(httpGet);
        int statusCode = httpResponse.getStatusLine().getStatusCode();
        if (statusCode == HttpStatus.SC_OK) //SC_OK = 200
        {
            response = EntityUtils.toString(httpResponse.getEntity());
        }
        else
        {
            response = "状态码"+statusCode;
        }
    } catch (Exception e)
    {
        throw new Exception(e);         
    } 
  • 写回答

1条回答 默认 最新

  • 废柴傻狗 2014-12-17 03:03
    关注

    网络连接问题,服务器无响应

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 openwrt双栈NAT
  • ¥15 部分网页页面无法显示!
  • ¥15 怎样解决power bi 中设置管理聚合,详细信息表和详细信息列显示灰色,而不能选择相应的内容呢?
  • ¥15 QTOF MSE数据分析
  • ¥15 平板录音机录音问题解决
  • ¥15 请问维特智能的安卓APP在手机上存储传感器数据后,如何找到它的存储路径?
  • ¥15 (SQL语句|查询结果翻了4倍)
  • ¥15 Odoo17操作下面代码的模块时出现没有'读取'来访问
  • ¥50 .net core 并发调用接口问题
  • ¥15 网上各种方法试过了,pip还是无法使用