08 2021 档案
摘要:https://my.oschina.net/u/3245207/blog/1843481
阅读全文
摘要:public class RegexTest { public static void main(String[] args) { // 查找的字符串 String line = "(乙方):xxx科技股份有限公司 (乙方):xxx有限公司 (乙方):xxx技术股份有限公司 "; //正则表达式 S
阅读全文
摘要:读,删,修改JSON string jsonPath = System.Windows.Forms.Application.StartupPath + "\\Data\\probeData.json"; string jsonString = File.ReadAllText(jsonPath);
阅读全文
摘要:Android 五种数据存储的方式分别为:1. SharedPreferences:以Map形式存放简单的配置参数;2. ContentProvider:将应用的私有数据提供给其他应用使用;3. 文件存储:以IO流形式存放,可分为手机内部和手机外部(sd卡等)存储,可存放较大数据;4. SQLite
阅读全文