File tree 2 files changed +9
-3
lines changed
utilcode/src/test/java/com/blankj/utilcode/utils
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -501,7 +501,10 @@ getEntries : 获取压缩文件中的文件对象
501
501
502
502
***
503
503
504
- ** 做这份整理是想把它作为Android开发的小字典,当遇到一些琐碎问题时,不用再面向百度或者谷歌查询API的使用,费时费力,这里有的话,大家尽管撸走;同时也希望它能逐日壮大起来,期待大家的Star和完善,当然我也会一直更新发布版本和日志,为了方便大家导入,现已上传jcenter;其中很多代码也是汇四方之精华,谢谢前辈们的提供,当然最终还是要通过单元测试的,如有错误,请及时告之;开设QQ群提供讨论,群号:74721490,至于验证问题对大家来说肯定都是小case;最近在玩微博,玩的话向大家求个[ 关注] [ weibo ] **
504
+ ### 关于
505
+ * 做这份整理是想把它作为Android开发的小字典,当遇到一些琐碎问题时,不用再面向百度或者谷歌查询API的使用,费时费力,这里有的话,大家尽管撸走;同时也希望它能逐日壮大起来,期待大家的Star和完善,当然我也会一直更新发布版本和日志,为了方便大家导入,现已上传jcenter;其中很多代码也是汇四方之精华,谢谢前辈们的提供,当然最终还是要通过单元测试的,如有错误,请及时告之。
506
+ * QQ群提供讨论,1群:74721490(已满)2群:25206533,至于验证问题对大家来说肯定都是小case。
507
+ * 我的[ 微博] [ weibo ] ,求个关注哈。
505
508
506
509
### Download
507
510
***
Original file line number Diff line number Diff line change @@ -52,9 +52,12 @@ public void readme2Eng() throws Exception {
52
52
String utilsName = line .substring (line .indexOf ("[" ) + 1 , line .indexOf ("Utils" ));
53
53
sb .append ("> - **About " ).append (utilsName ).append (line .substring (line .indexOf ("→" )));
54
54
} else if (line .contains (" : " )) {
55
- sb .append (line .substring (0 , line .indexOf (':' )).trim ());
56
- } else if (line .contains ("**做" )) {
55
+ sb .append (line .substring (0 , line .indexOf (
56
+ ':' )).trim ());
57
+ } else if (line .contains ("### 关于" )) {
57
58
sb .append ("**I'm so sorry for that the code is annotated with Chinese.**" );
59
+ } else if (line .contains ("* 做" ) || line .contains ("* QQ" ) || line .contains ("* 我的" )) {
60
+ continue ;
58
61
} else {
59
62
sb .append (line );
60
63
}
You can’t perform that action at this time.
0 commit comments