Giter Site home page Giter Site logo

okhttputil's Introduction

如何引用

allprojects {
		repositories {
			...
			maven { url 'https://www.jitpack.io' }
		}
}
dependencies {
     compile 'com.github.JiangHaiYang01:OKHttpUtil:1.0.0'
}

get

  OKHttpUtils.create(this)
                .get(urlStr, 1, PhoneBean.class, new OKHttpUtils.OnResponse<PhoneBean>() {
                    @Override
                    public void OnMap(Map<String, String> map) {
                        map.put("phone", "18856907654");
                        map.put("key", "5778e9d9cf089fc3b093b162036fc0e1");
                    }

                    @Override
                    public void onFailure(IOException e) {

                    }

                    @Override
                    public void onResponse(PhoneBean result) {
                        Log.e("TAG", "response---->" + result);
                        textView.setText(result.getResultcode() + " " + result.getResult().getCity());
                    }
                });

post

 OKHttpUtils.create(this)
                .post(urlStr, 1, PhoneBean.class, new OKHttpUtils.OnResponse<PhoneBean>() {
                    @Override
                    public void OnMap(Map<String, String> map) {
                        map.put("phone", "18856907654");
                        map.put("key", "5778e9d9cf089fc3b093b162036fc0e1");
                    }

                    @Override
                    public void onFailure(IOException e) {

                    }

                    @Override
                    public void onResponse(PhoneBean result) {
                        Log.e("TAG", "response---->" + result);
                        textView.setText(result.getResultcode() + " " + result.getResult().getCity());
                    }
                });

downLoad

   OKHttpUtils.create(this)
                .downLoad("https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3565619450,1776366346&fm=27&gp=0.jpg",
                        1, "1111",
                        "test.png");

upLoad

  OKHttpUtils.create(this)
                .upLoad("url", 1, "path", "xxx.png", PhoneBean.class, new OKHttpUtils.OnResponse<PhoneBean>() {
                    @Override
                    public void OnMap(Map<String, String> map) {

                    }

                    @Override
                    public void onFailure(IOException e) {

                    }

                    @Override
                    public void onResponse(PhoneBean result) {

                    }
                });

okhttputil's People

Contributors

jianghaiyang01 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.