Retrofit2+RxJava封装的网络框架(中)

2023-12-23 01:58

本文主要是介绍Retrofit2+RxJava封装的网络框架(中),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本篇主要把工具类的代码贴出,下篇讲解用法。

package com.abysskitty.frame.network;import rx.Subscriber;/*** Created by AbyssKitty on 2016/10/12.* Version 1.0* 可以在本类中对 Subscriber 获取到的数据进行处理。* 例如集中处理错误信息等*/
public class NetSubscriber<T> extends Subscriber<T> {@Overridepublic void onCompleted() {}@Overridepublic void onError(Throwable e) {if("".equals(e.getLocalizedMessage().toString())){System.err.println("========================   C Net Error  ========================");System.err.println("custom DEBUG :Net Error = " + "数据解析错误,请检查解析type是否正确 (NetModle.******)");System.err.println("========================   E Net Error  ========================");}else{
//            Toast.makeText(BaseApplication.context,"错误的操作 或 服务器响应异常",Toast.LENGTH_SHORT).show();System.err.println("========================   C Net Error  ========================");System.err.println("custom DEBUG :Net Error = " + e.getLocalizedMessage());System.err.println("========================   E Net Error  ========================");}}@Overridepublic void onNext(T t) {}
}
package com.abysskitty.frame.network;import com.abysskitty.frame.network.bean.RespBean;/*** Created by AbyssKitty on 2016/10/18.* 使用接口 网络数据回调接口*/
public interface OnNetSubscriberListener {
//    void onNext(RespBean bean,Object data);void onNext(RespBean bean);void onError(Throwable e);
//    void onCompleted();
}
package com.abysskitty.frame.network.bean;import java.util.List;/*** Created by Administrator on 2016/10/19.*/
public class RespBean {public String message;    //返回信息public List list;       //list数据public Object obj;        //obj数据public String code;    //成功返回9999public String page;public String pageNum;public List depart; //部门public List user;public Object info;public String total;         //条数public String key;        //0public String returnCode; //返回码 正确=SUCCESSpublic RespDate resp;public String token;public String userId;
}

RespBean是数据回调初始化解析的Bean,需要根据具体的业务来自由定制(根据接口数据结构)。

下面是序列化log的代码

package com.abysskitty.frame.tool;import android.support.annotation.IntDef;
import android.support.annotation.Nullable;import com.abysskitty.frame.Switch;
import com.abysskitty.frame.network.loggingInterceptors.klog.BaseLog;
import com.abysskitty.frame.network.loggingInterceptors.klog.FileLog;
import com.abysskitty.frame.network.loggingInterceptors.klog.JsonLog;
import com.abysskitty.frame.network.loggingInterceptors.klog.XmlLog;import java.io.File;/*** This is a Log tool,with this you can the following* <ol>* <li>use KLog.d(),you could print whether the method execute,and the default tag is current class's* name</li>* <li>use KLog.d(msg),you could print log as before,and you could location the method with a click in* Android Studio Logcat</li>* <li>use KLog.json(),you could print json string with well format automatic</li>* </ol>** @author zhaokaiqiang*         github https://github.com/ZhaoKaiQiang/KLog*         15/11/17 扩展功能,添加对文件的支持*         15/11/18 扩展功能,增加对XML的支持,修复BUG*         15/12/8  扩展功能,添加对任意参数的支持*         15/12/11 扩展功能,增加对无限长字符串支持*         16/6/13  扩展功能,添加对自定义全局Tag的支持*/
public class LogUtil {/*** 是否显示Log,调试时打开,正式发布时关闭!!!* */private static boolean IS_SHOW_LOG = Switch.isDebug;public static final String LINE_SEPARATOR = System.getProperty("line.separator");public static final String NULL_TIPS = "Log with null object";private static final String DEFAULT_MESSAGE = "test here";private static final String PARAM = "Param";private static final String NULL = "null";private static final String TAG_DEFAULT = "mLogUtil";private static final String SUFFIX = ".java";public static final int JSON_INDENT = 4;public static final int V = 0x1;public static final int D = 0x2;public static final int I = 0x3;public static final int W = 0x4;public static final int E = 0x5;public static final int WTF = 0x6;public static final int JSON = 0x7;public static final int XML = 0x8;@IntDef({ V, D, I, W, E, WTF, JSON, XML })public @interface LogType {}private static final int STACK_TRACE_INDEX = 6;public static String mGlobalTag = TAG_DEFAULT;public static void init(boolean isShowLog) {IS_SHOW_LOG = isShowLog;}public static void init(boolean isShowLog, @Nullable String tag) {IS_SHOW_LOG = isShowLog;mGlobalTag = tag;}public static void v() {printLog(V, null, DEFAULT_MESSAGE);}public static void v(Object msg) {printLog(V, null, msg);}public static void v(String tag, Object... objects) {printLog(V, tag, objects);}public static void d() {printLog(D, null, DEFAULT_MESSAGE);}public static void d(Object msg) {printLog(D, null, msg);}public static void d(String tag, Object... objects) {printLog(D, tag, objects);}public static void i() {printLog(I, null, DEFAULT_MESSAGE);}public static void i(Object msg) {printLog(I, null, msg);}public static void i(String tag, Object... objects) {printLog(I, tag, objects);}public static void w() {printLog(W, null, DEFAULT_MESSAGE);}public static void w(Object msg) {printLog(W, null, msg);}public static void w(String tag, Object... objects) {printLog(W, tag, objects);}public static void e() {printLog(E, null, DEFAULT_MESSAGE);}public static void e(Object msg) {printLog(E, null, msg);}public static void e(String tag, Object... objects) {printLog(E, tag, objects);}public static void a() {printLog(WTF, null, DEFAULT_MESSAGE);}public static void a(Object msg) {printLog(WTF, null, msg);}public static void a(String tag, Object... objects) {printLog(WTF, tag, objects);}public static void json(String jsonFormat) {printLog(JSON, null, jsonFormat);}public static void json(String tag, String jsonFormat) {printLog(JSON, tag, jsonFormat);}public static void xml(String xml) {printLog(XML, null, xml);}public static void xml(String tag, String xml) {printLog(XML, tag, xml);}public static void file(File targetDirectory, Object msg) {printFile(null, targetDirectory, null, msg);}public static void file(String tag, File targetDirectory, Object msg) {printFile(tag, targetDirectory, null, msg);}public static void file(String tag, File targetDirectory, String fileName, Object msg) {printFile(tag, targetDirectory, fileName, msg);}public static void printLog(@LogType int type, String tagStr, Object... objects) {printLog(true, type, tagStr, objects);}public static void printLog(boolean showHeadString, @LogType int type, String tagStr,Object... objects) {if (!IS_SHOW_LOG) {return;}String[] contents = wrapperContent(tagStr, objects);String tag = contents[0];String msg = contents[1];String headString = contents[2];if (!showHeadString) {headString = "";}switch (type) {case V:case D:case I:case W:case E:case WTF:BaseLog.printDefault(type, tag, headString + msg);break;case JSON:JsonLog.printJson(tag, msg, headString);break;case XML:XmlLog.printXml(tag, msg, headString);break;}}private static void printFile(String tagStr, File targetDirectory, String fileName, Object objectMsg) {if (!IS_SHOW_LOG) {return;}String[] contents = wrapperContent(tagStr, objectMsg);String tag = contents[0];String msg = contents[1];String headString = contents[2];FileLog.printFile(tag, targetDirectory, fileName, headString, msg);}/*** @param tagStr TAG标签* @param objects 要打印的值*/private static String[] wrapperContent(String tagStr, Object... objects) {StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace();StackTraceElement targetElement = stackTrace[STACK_TRACE_INDEX];String className = targetElement.getClassName();String[] classNameInfo = className.split("\\.");if (classNameInfo.length > 0) {className = classNameInfo[classNameInfo.length - 1] + SUFFIX;}if (className.contains("$")) {className = className.split("\\$")[0] + SUFFIX;}String methodName = targetElement.getMethodName();int lineNumber = targetElement.getLineNumber();if (lineNumber < 0) {lineNumber = 0;}String methodNameShort = methodName.substring(0, 1).toUpperCase() + methodName.substring(1);String tag = (tagStr == null ? mGlobalTag : tagStr);String msg = (objects == null) ? NULL_TIPS : getObjectsString(objects);String headString = "[ (" + className + ":" + lineNumber + ")#" + methodNameShort + " ] ";return new String[] { tag, msg, headString };}private static String getObjectsString(Object... objects) {if (objects.length > 1) {StringBuilder stringBuilder = new StringBuilder();stringBuilder.append("\n");for (int i = 0; i < objects.length; i++) {Object object = objects[i];if (object == null) {stringBuilder.append(PARAM).append("[").append(i).append("]").append(" = ").append(NULL).append("\n");} else {stringBuilder.append(PARAM).append("[").append(i).append("]").append(" = ").append(object.toString()).append("\n");}}return stringBuilder.toString();} else {Object object = objects[0];return object == null ? NULL : object.toString();}}
}

这篇关于Retrofit2+RxJava封装的网络框架(中)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/526330

相关文章

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Linux系统配置NAT网络模式的详细步骤(附图文)

《Linux系统配置NAT网络模式的详细步骤(附图文)》本文详细指导如何在VMware环境下配置NAT网络模式,包括设置主机和虚拟机的IP地址、网关,以及针对Linux和Windows系统的具体步骤,... 目录一、配置NAT网络模式二、设置虚拟机交换机网关2.1 打开虚拟机2.2 管理员授权2.3 设置子

揭秘Python Socket网络编程的7种硬核用法

《揭秘PythonSocket网络编程的7种硬核用法》Socket不仅能做聊天室,还能干一大堆硬核操作,这篇文章就带大家看看Python网络编程的7种超实用玩法,感兴趣的小伙伴可以跟随小编一起... 目录1.端口扫描器:探测开放端口2.简易 HTTP 服务器:10 秒搭个网页3.局域网游戏:多人联机对战4.

Springboot @Autowired和@Resource的区别解析

《Springboot@Autowired和@Resource的区别解析》@Resource是JDK提供的注解,只是Spring在实现上提供了这个注解的功能支持,本文给大家介绍Springboot@... 目录【一】定义【1】@Autowired【2】@Resource【二】区别【1】包含的属性不同【2】@

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain