Skip to content

Commit 2cf7d9a

Browse files
committed
Give me ur Pull Request. ლ(╹◡╹ლ )
1 parent 05de7c6 commit 2cf7d9a

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

README-CH.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Android开发人员不得不收集的代码([持续更新中][update_log.md])
22
为方便查找,已进行大致归类,其目录如下所示:
33
> - **App相关→[AppUtils.java][app.java]**
4-
> - 安装App *installApp*
4+
> - 安装App(支持6.0以上) *installApp*
55
> - 卸载指定包名的App *uninstallApp*
66
> - 获取当前App信息 *getAppInfo*
77
> - 获取所有已安装App信息 *getAllAppsInfo*
@@ -19,6 +19,8 @@
1919
> - **转换相关→[ConvertUtils.java][convert.java][Test][convert.test]**
2020
> - byteArr与hexString互转 *bytes2HexString**hexString2Bytes*
2121
> - charArr与byteArr互转 *chars2Bytes**bytes2Chars*
22+
> - 字节数与unit为单位的size互转 *byte2Size**size2Byte*
23+
> - 字节数转合适大小 *byte2FitSize*
2224
> - inputStream与outputStream互转 *input2OutputStream**output2InputStream*
2325
> - inputStream与byteArr互转 *inputStream2Bytes**bytes2InputStream*
2426
> - outputStream与byteArr互转 *outputStream2Bytes**bytes2OutputStream*
@@ -99,8 +101,6 @@
99101
> - 获取文件行数 *getFileLines*
100102
> - 指定编码按行读取文件到List *readFile2List*
101103
> - 指定编码按行读取文件到StringBuilder中 *readFile2SB*
102-
> - 字节数转以unit为单位的size *byte2Size*
103-
> - 以unit为单位的size转字节数 *size2Byte*
104104
> - 获取文件大小 *getFileSize*
105105
> - 关闭IO *closeIO*
106106
> - 根据全路径获取最长目录 *getDirName*
@@ -220,10 +220,10 @@
220220
> - SP中读取float *getFloat*
221221
> - SP中写入boolean类型value *putBoolean*
222222
> - SP中读取boolean *getBoolean*
223-
> - 获取SP中所有键值对 *getAll*
224-
> - 从SP中移除该key *remove*
225-
> - 判断SP中是否存在该key *contains*
226-
> - 清除SP中所有数据 *clear*
223+
> - SP中获取所有键值对 *getAll*
224+
> - SP中移除该key *remove*
225+
> - SP中是否存在该key *contains*
226+
> - SP中清除所有数据 *clear*
227227
228228
> - **字符串相关→[StringUtils.java][string.java][Test][string.test]**
229229
> - 判断字符串是否为null或长度为0 *isEmpty*
@@ -274,7 +274,7 @@
274274
> - 批量解压文件 *unzipFiles*
275275
> - 解压文件 *unzipFile*
276276
> - 解压带有关键字的文件 *unzipFileByKeyword*
277-
> - 获取压缩文件中的文件路径链表 *getFilePathInZip*
277+
> - 获取压缩文件中的文件路径链表 *getFilesPath*
278278
> - 获取压缩文件中的注释链表 *getComments*
279279
> - 获取压缩文件中的文件对象 *getEntries*
280280

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ Directory is shown below:
1616
> - **About Const→[ConstUtils.java][const.java]**
1717
> - *Memory Const*
1818
> - *Time Const*
19-
> - *RegEx Const*
19+
> - *Regex Const*
2020
2121
> - **About Convert→[ConvertUtils.java][convert.java][Test][convert.test]**
2222
> - *bytes2HexString**hexString2Bytes*
2323
> - *chars2Bytes**bytes2Chars*
24+
> - *byte2Size**size2Byte*
25+
> - *byte2FitSize*
2426
> - *input2OutputStream**output2InputStream*
2527
> - *inputStream2Bytes**bytes2InputStream*
2628
> - *outputStream2Bytes**bytes2OutputStream*
@@ -101,8 +103,6 @@ Directory is shown below:
101103
> - *getFileLines*
102104
> - *readFile2List*
103105
> - *readFile2SB*
104-
> - *byte2Size*
105-
> - *size2Byte*
106106
> - *getFileSize*
107107
> - *closeIO*
108108
> - *getDirName*
@@ -275,7 +275,7 @@ Directory is shown below:
275275
> - *unzipFiles*
276276
> - *unzipFile*
277277
> - *unzipFileByKeyword*
278-
> - *getFilePathInZip*
278+
> - *getFilesPath*
279279
> - *getComments*
280280
> - *getEntries*
281281

update_log.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
###
2+
#### 16/09/14 ImageUtils完善完毕,完善了6.0及以上版本安装App的问题,发布版本1.2.0
23
#### 16/09/13 新增英文版README
34
#### 16/09/12 ZipUtils及单元测试完美谢幕(支持空文件夹)
45
#### 16/09/11 push一下不断更

0 commit comments

Comments
 (0)