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

相关文章

JavaScript中的isTrusted属性及其应用场景详解

《JavaScript中的isTrusted属性及其应用场景详解》在现代Web开发中,JavaScript是构建交互式应用的核心语言,随着前端技术的不断发展,开发者需要处理越来越多的复杂场景,例如事件... 目录引言一、问题背景二、isTrusted 属性的来源与作用1. isTrusted 的定义2. 为

Java循环创建对象内存溢出的解决方法

《Java循环创建对象内存溢出的解决方法》在Java中,如果在循环中不当地创建大量对象而不及时释放内存,很容易导致内存溢出(OutOfMemoryError),所以本文给大家介绍了Java循环创建对象... 目录问题1. 解决方案2. 示例代码2.1 原始版本(可能导致内存溢出)2.2 修改后的版本问题在

Java CompletableFuture如何实现超时功能

《JavaCompletableFuture如何实现超时功能》:本文主要介绍实现超时功能的基本思路以及CompletableFuture(之后简称CF)是如何通过代码实现超时功能的,需要的... 目录基本思路CompletableFuture 的实现1. 基本实现流程2. 静态条件分析3. 内存泄露 bug

Java中Object类的常用方法小结

《Java中Object类的常用方法小结》JavaObject类是所有类的父类,位于java.lang包中,本文为大家整理了一些Object类的常用方法,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. public boolean equals(Object obj)2. public int ha

SpringBoot项目中Maven剔除无用Jar引用的最佳实践

《SpringBoot项目中Maven剔除无用Jar引用的最佳实践》在SpringBoot项目开发中,Maven是最常用的构建工具之一,通过Maven,我们可以轻松地管理项目所需的依赖,而,... 目录1、引言2、Maven 依赖管理的基础概念2.1 什么是 Maven 依赖2.2 Maven 的依赖传递机

SpringBoot实现动态插拔的AOP的完整案例

《SpringBoot实现动态插拔的AOP的完整案例》在现代软件开发中,面向切面编程(AOP)是一种非常重要的技术,能够有效实现日志记录、安全控制、性能监控等横切关注点的分离,在传统的AOP实现中,切... 目录引言一、AOP 概述1.1 什么是 AOP1.2 AOP 的典型应用场景1.3 为什么需要动态插

Java实现Excel与HTML互转

《Java实现Excel与HTML互转》Excel是一种电子表格格式,而HTM则是一种用于创建网页的标记语言,虽然两者在用途上存在差异,但有时我们需要将数据从一种格式转换为另一种格式,下面我们就来看看... Excel是一种电子表格格式,广泛用于数据处理和分析,而HTM则是一种用于创建网页的标记语言。虽然两

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

Java中Springboot集成Kafka实现消息发送和接收功能

《Java中Springboot集成Kafka实现消息发送和接收功能》Kafka是一个高吞吐量的分布式发布-订阅消息系统,主要用于处理大规模数据流,它由生产者、消费者、主题、分区和代理等组件构成,Ka... 目录一、Kafka 简介二、Kafka 功能三、POM依赖四、配置文件五、生产者六、消费者一、Kaf

Java访问修饰符public、private、protected及默认访问权限详解

《Java访问修饰符public、private、protected及默认访问权限详解》:本文主要介绍Java访问修饰符public、private、protected及默认访问权限的相关资料,每... 目录前言1. public 访问修饰符特点:示例:适用场景:2. private 访问修饰符特点:示例: