/src/com/wqdsoft/im/global/ErrorCode.java

https://gitlab.com/Er_Hei/PlayCar · Java · 174 lines · 119 code · 15 blank · 40 comment · 8 complexity · ebc8b9561f6200ba13e1548c6471f5ea MD5 · raw file

  1. package com.wqdsoft.im.global;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import android.content.Context;
  5. import android.text.TextUtils;
  6. import android.util.Log;
  7. import android.widget.Toast;
  8. import com.alibaba.fastjson.JSON;
  9. import com.alibaba.fastjson.JSONObject;
  10. public final class ErrorCode {
  11. private static final Map<Integer, String> errCode = new HashMap<Integer, String>();
  12. private static final String TAG = "ERRORCODE";
  13. static{
  14. errCode.put(-1, "网络请求超时");
  15. errCode.put(101, "uid为空");
  16. errCode.put(102, "没有数据");
  17. errCode.put(103, "action请求错误");
  18. errCode.put(104, "手机号码为空");
  19. errCode.put(105, "密码为空");
  20. errCode.put(106, "手机号或密码错误");
  21. errCode.put(107, "手机号已经存在");
  22. errCode.put(108, "验证码为空");
  23. errCode.put(109, "验证码错误");
  24. errCode.put(110, "原始密码错误!");
  25. errCode.put(111, "图片上传类型type错误");
  26. errCode.put(112, "文件名 错误");
  27. errCode.put(113, "图片尺寸过大");
  28. errCode.put(114, "文件类型(后缀名)错误");
  29. errCode.put(115, "文件上传未知错误");
  30. errCode.put(116, "文件上传失败");
  31. errCode.put(117, "相册id为空");
  32. errCode.put(118, "图片路径为空");
  33. errCode.put(119, "保存图片信息失败");
  34. errCode.put(120, "pid为空");
  35. errCode.put(121, "上传文件空值");
  36. errCode.put(122, "lat为空");
  37. errCode.put(123, "lng为空");
  38. errCode.put(124, "目标为空");
  39. errCode.put(125, "最后一页");
  40. errCode.put(126, "对象为空");
  41. errCode.put(127, "已经是好友,无需添加");
  42. errCode.put(128, "注册失败 code:129");
  43. errCode.put(129, "相册新建失败");
  44. errCode.put(130, "半径为空");
  45. errCode.put(131, "形象评分为空");
  46. errCode.put(132, "服务评分为空");
  47. errCode.put(133, "积分为空");
  48. errCode.put(134, "积分对应值(rmb/购买会员时长)为空");
  49. errCode.put(135, "积分不足");
  50. errCode.put(137, "起始时间为空");
  51. errCode.put(138, "结束时间为空");
  52. errCode.put(139, "搜索条件为空");
  53. errCode.put(140, "已经评价过");
  54. errCode.put(141, "是否被搜索参数为空");
  55. errCode.put(142, "隐私参数为空");
  56. errCode.put(143, "已经授权");
  57. errCode.put(150, "字段为空!");
  58. errCode.put(151, "账号为空!");
  59. errCode.put(152, "字段为空!");
  60. }
  61. /**
  62. * 得到正确的数据
  63. * @param result 请求返回的数据
  64. * @return null 没有数据
  65. * 作者:fighter <br />
  66. * 创建时间:2013-5-21<br />
  67. * 修改时间:<br />
  68. */
  69. public static String getData(Context context, String result){
  70. if(result == null){
  71. Toast.makeText(context, "网络请求超时!", Toast.LENGTH_SHORT).show();
  72. return null;
  73. }
  74. try {
  75. JSONObject jsonObject = JSON.parseObject(result);
  76. int errorCode = jsonObject.getIntValue("error");
  77. if(errorCode == 0){
  78. return jsonObject.getString("data");
  79. }else{
  80. String info = getErrCodeDescribe(errorCode);
  81. if(TextUtils.isEmpty(info)){
  82. Toast.makeText(context, "出错啦!", Toast.LENGTH_SHORT).show();
  83. }else{
  84. Toast.makeText(context, info , Toast.LENGTH_SHORT).show();
  85. }
  86. return null;
  87. }
  88. } catch (Exception e) {
  89. Toast.makeText(context, "发生未知错误!", Toast.LENGTH_SHORT).show();
  90. Log.e(TAG, "getData()", e);
  91. return null;
  92. }
  93. }
  94. /**
  95. * 获取数据
  96. * @param t
  97. * @return
  98. * 作者:fighter <br />
  99. * 创建时间:2013-5-27<br />
  100. * 修改时间:<br />
  101. */
  102. public static String getData(String t){
  103. try {
  104. JSONObject jsonObject = JSON.parseObject(t);
  105. return jsonObject.getString("data");
  106. } catch (Exception e) {
  107. Log.e(TAG, "getData()"+t, e);
  108. return "";
  109. }
  110. }
  111. /**
  112. * 显示错误码
  113. * @param context
  114. * @param error
  115. * 作者:fighter <br />
  116. * 创建时间:2013-5-27<br />
  117. * 修改时间:<br />
  118. */
  119. public static void toastError(Context context, int error){
  120. String info = getErrCodeDescribe(error);
  121. if(TextUtils.isEmpty(info)){
  122. Toast.makeText(context, "出现未知错误!", Toast.LENGTH_SHORT).show();
  123. }else{
  124. Toast.makeText(context, info , Toast.LENGTH_SHORT).show();
  125. }
  126. }
  127. /**
  128. * 获取错误码!
  129. * @param t
  130. * @return
  131. * 作者:fighter <br />
  132. * 创建时间:2013-5-27<br />
  133. * 修改时间:<br />
  134. */
  135. public static int getError(String t){
  136. if(t == null){
  137. return -1;
  138. }
  139. try {
  140. JSONObject jsonObject = JSON.parseObject(t);
  141. int errorCode = jsonObject.getIntValue("error");
  142. return errorCode;
  143. } catch (Exception e) {
  144. Log.e(TAG, "getError()" + t, e);
  145. return -1;
  146. }
  147. }
  148. /**
  149. * 获取错误信息的描述
  150. * @param code 错误代号
  151. * @return 错误代号的描述
  152. * 作者:fighter <br />
  153. * 创建时间:2013-5-21<br />
  154. * 修改时间:<br />
  155. */
  156. public static String getErrCodeDescribe(int code){
  157. return errCode.get(code);
  158. }
  159. }