Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Chengshijian authored Jan 19, 2018
1 parent 2221a63 commit 77f953b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,21 @@ Introduction
   本开源项目是根据我大二寒假期间(2017年1月)做的一个教务方面的软件,今年寒假期间(2018年1月)进行重构并进行重新设计而成,代码已进行了优化。
依托Bmob后端云实现收藏模块的数据上传与更新。其他教务方面的数据是通过Jsoup框架解析辽宁石油化工大学的html网页源码获得。
apk文件已托管到fir.im免费应用内测托管平台,实现了自动检测软件更新。项目中用到了很多github上优秀的开源框架,非常感谢开源的作者们。
   </br>
   LoginUtil.java文件里有一个getValidSchoolAccount()方法可以获得2001届至2017届未修改账号密码的学生的学号并将结果保存至手机根目录的accounts.txt文件中(这个方法会将所有可能的账号逐个尝试登录,成功则写入accounts.txt文件,时间较长),利用里面的账号即可登录(账号和密码相同),要想获得这些账号可通过调用一下代码获得:
```
new RxPermissions(this)
.request(Manifest.permission.WRITE_EXTERNAL_STORAGE)
.subscribe(new Action1<Boolean>() {
@Override
public void call(Boolean aBoolean) {
if(aBoolean){
LoginUtil.getValidSchoolAccount();
}
}
});

```
Screenshots
-

Expand Down

0 comments on commit 77f953b

Please sign in to comment.