• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

android - 使用 android 发出 HTTP 请求

[复制链接]
菜鸟教程小白 发表于 2022-8-1 01:20:48 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我到处搜索,但找不到答案,有没有办法发出简单的 HTTP 请求?我想在我的一个网站上请求一个 PHP 页面/脚本,但我不想显示该网页。
如果可能的话,我什至想在后台进行(在广播接收器中)



Best Answer-推荐答案


更新
这是一个非常古老的答案。我绝对不会再推荐 Apache 的客户端了。而是使用:

  • Retrofit
  • OkHttp
  • Volley
  • HttpUrlConnection

  • 原始答案
    首先,请求访问网络的权限,在您的 list 中添加以下内容:
    <uses-permission android:name="android.permission.INTERNET" />
    
    那么最简单的方法就是使用 Android bundle 的 Apache http 客户端:
        HttpClient httpclient = new DefaultHttpClient();
        HttpResponse response = httpclient.execute(new HttpGet(URL));
        StatusLine statusLine = response.getStatusLine();
        if(statusLine.getStatusCode() == HttpStatus.SC_OK){
            ByteArrayOutputStream out = new ByteArrayOutputStream();
            response.getEntity().writeTo(out);
            String responseString = out.toString();
            out.close();
            //..more logic
        } else{
            //Closes the connection.
            response.getEntity().getContent().close();
            throw new IOException(statusLine.getReasonPhrase());
        }
    
    如果您希望它在单独的线程上运行,我建议您扩展 AsyncTask:
    class RequestTask extends AsyncTask<String, String, String>{
    
        @Override
        protected String doInBackground(String... uri) {
            HttpClient httpclient = new DefaultHttpClient();
            HttpResponse response;
            String responseString = null;
            try {
                response = httpclient.execute(new HttpGet(uri[0]));
                StatusLine statusLine = response.getStatusLine();
                if(statusLine.getStatusCode() == HttpStatus.SC_OK){
                    ByteArrayOutputStream out = new ByteArrayOutputStream();
                    response.getEntity().writeTo(out);
                    responseString = out.toString();
                    out.close();
                } else{
                    //Closes the connection.
                    response.getEntity().getContent().close();
                    throw new IOException(statusLine.getReasonPhrase());
                }
            } catch (ClientProtocolException e) {
                //TODO Handle problems..
            } catch (IOException e) {
                //TODO Handle problems..
            }
            return responseString;
        }
        
        @Override
        protected void onPostExecute(String result) {
            super.onPostExecute(result);
            //Do anything with response..
        }
    }
    
    然后,您可以通过以下方式提出请求:
       new RequestTask().execute("http://stackoverflow.com");
    

    关于android - 使用 android 发出 HTTP 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3505930/

    回复

    使用道具 举报

    懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    关注0

    粉丝2

    帖子830918

    发布主题
    阅读排行 更多
    广告位

    扫描微信二维码

    查看手机版网站

    随时了解更新最新资讯

    139-2527-9053

    在线客服(服务时间 9:00~18:00)

    在线QQ客服
    地址:深圳市南山区西丽大学城创智工业园
    电邮:jeky_zhao#qq.com
    移动电话:139-2527-9053

    Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap