Http工具类+MyApp图片加载

//HttpUtils

public class HttpUtils {
    private static final String TAG = "HttpUtils---";
    private MyHandler myHandler = new MyHandler();
    private static final int SUCCESS = 0;
    private static final int ERROR = 1;

    //单利
    private static HttpUtils httpUtils = new HttpUtils();
    private HttpUtilListener httpUtilsListener;

    private HttpUtils() {
    }//构造方法私有化

    public static HttpUtils getInstance() {
        if (httpUtils == null) {
            httpUtils = new HttpUtils();
        }
        return httpUtils;
    }

    //封装get
    public void get(final String url) {
        new Thread() {
            @Override
            public void run() {
                try {
                    URL u = new URL(url);
                    HttpURLConnection connection = (HttpURLConnection) u.openConnection();
                    connection.setConnectTimeout(3000);
                    if (connection.getResponseCode() == 200) {
                        InputStream inputStream = connection.getInputStream();
                        String json = inputStream2String2(inputStream);
                        //发送数据
                        Message message = myHandler.obtainMessage();
                        message.what = SUCCESS;
                        message.obj = json;
                        myHandler.sendMessage(message);
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                    Message message = myHandler.obtainMessage();
                    message.what = ERROR;
                    message.obj = e.getMessage();
                    myHandler.sendMessage(message);
                }
            }
        }.start();
    }

    class MyHandler extends Handler {
        @Override
        public void handleMessage(Message msg) {
            switch (msg.what) {
                case SUCCESS:
                    //成功
                    String json = (String) msg.obj;
                    Log.d(TAG, "handleMessage: " + json);
                    httpUtilsListener.getSuccess(json);
                    break;
                case ERROR:
                    //失败
                    String error = (String) msg.obj;
                    Log.d(TAG, "handleMessage: " + error);
                    httpUtilsListener.getError(error);
                    break;
            }
        }
    }

    //1.定义接口
    public interface HttpUtilListener {
        void getSuccess(String json);

        void getError(String error);
    }

    //2.外部访问的方法
    public void setHttpUtilsListener(HttpUtilListener httpUtilsListener) {
        this.httpUtilsListener = httpUtilsListener;
    }

    //将流--字符串
    public String inputStream2String(InputStream inputStream) {
        int len = 0;
        byte[] butter = new byte[1024];
        StringBuffer stringBuffer = new StringBuffer();
        try {

            while ((len = inputStream.read(butter)) != -1) {
                String s = new String(butter, 0, len);
                stringBuffer.append(s);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }


        return stringBuffer.toString();
    }

    //将流--字符串  使用字符流--部分乱码
    public String inputStream2String2(InputStream inputStream) {
        InputStreamReader reader = new InputStreamReader(inputStream);
        BufferedReader br = new BufferedReader(reader);
        StringBuffer sr = new StringBuffer();
        try {

            String s = null;
            while ((s = br.readLine()) != null) {
                sr.append(s);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

        return sr.toString();
    }


}




//MyApp

public class MyApp extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        //初始化ImageLoader
        //创建默认的ImageLoader配置参数
        ImageLoaderConfiguration configuration = ImageLoaderConfiguration
                .createDefault(this);

        //Initialize ImageLoader with configuration.
        ImageLoader.getInstance().init(configuration);
    }

    public static DisplayImageOptions getOptions() {
        DisplayImageOptions options = new DisplayImageOptions.Builder()
                .showImageOnLoading(R.mipmap.ic_launcher) // resource or drawable
                .showImageForEmptyUri(R.mipmap.ic_launcher) // resource or drawable
                .showImageOnFail(R.mipmap.ic_launcher) // resource or drawable
                .cacheInMemory(true) // default
                .cacheOnDisk(true) // default
                 .bitmapConfig(Bitmap.Config.RGB_565) // default
                .displayer(new SimpleBitmapDisplayer()) // default
                .handler(new Handler()) // default
                .build();
        return options;
    }
}


猜你喜欢

转载自blog.csdn.net/aa15362415/article/details/80471696
今日推荐