摘要:
1. 准备一个待测试的类 package com.example.Service;public class PersonService { public void save(String userName) { String sub = userName.substring... 阅读全文
摘要:
Context.MODE_PRIVATE:为默认操作模式,代表该文件是私有数据,只能被应用本身访问,在该模式下,写入的内容会覆盖原文件的内容,如果想把新写入的内容追加到原文件中。可以使用Context.MODE_APPENDContext.MODE_APPEND:模式会检查文件是否存在,存在就往文件... 阅读全文