File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
library/src/main/java/com/code19/library Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ compile 'com.code19.library:library:0.0.6'
68
68
* transformlat 纬度转换
69
69
* transformlng 经度转换
70
70
* out_of_china 判断是否在国内,不在国内不做偏移
71
+
71
72
- DateUtil.java 日期工具类
72
73
* formatDataTime 格式化日期时间
73
74
* formatDate 格式化日期
@@ -202,6 +203,7 @@ compile 'com.code19.library:library:0.0.6'
202
203
* isChinese 是否是中文
203
204
* isContainChinese 是否包含中文
204
205
* strFormat2 不足2位前面补0
206
+ * convert2Int 类型安全转换
205
207
206
208
- SystemUtils.java 系统工具
207
209
* sendSMS 调用系统发送短信
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ public static String strFormat2(String str) {
209
209
return str ;
210
210
}
211
211
212
- public static int conver2Int (Object value , int defaultValue ) {
212
+ public static int convert2Int (Object value , int defaultValue ) {
213
213
if (value == null || "" .equals (value .toString ().trim ())) {
214
214
return defaultValue ;
215
215
}
You can’t perform that action at this time.
0 commit comments