摘要: File filesDir = getFilesDir(); File file = new File(filesDir, "test.txt"); FileReader fr = new FileReader(file); int len ... 阅读全文
posted @ 2015-10-21 22:13 一路向北中 阅读(207) 评论(0) 推荐(0)
摘要: File filesDir = getFilesDir();File file = new File(filesDir, "test.txt");OutputStream os = new FileOutputStream(file);String content = "凡是过去,皆为序章。”英国议... 阅读全文
posted @ 2015-10-21 21:49 一路向北中 阅读(413) 评论(0) 推荐(0)
摘要: File filesDir = getFilesDir();// /data/data/包名/filesSystem.out.println(filesDir.getAbsolutePath());File cacheDir = getCacheDir();// /data/data/包名/cach... 阅读全文
posted @ 2015-10-21 16:51 一路向北中 阅读(188) 评论(0) 推荐(0)
摘要: String content = "莎士比亚说:“凡是过去,皆为序章。”英国议会在增进两国社会各界交流、促进双边关系发展上发挥着越来越重要的作用。希望各位议员登高望远,继续做中英关系的积极推动者、中英友好的贡献者、中英合作的支持者,为中英关系更广阔、更光明的未来铺设理解之路、架起合作之桥。";Sms... 阅读全文
posted @ 2015-10-21 16:33 一路向北中 阅读(141) 评论(0) 推荐(0)
摘要: Intent intent = new Intent(); intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:"+"10086")); startActiv... 阅读全文
posted @ 2015-10-21 09:48 一路向北中 阅读(141) 评论(0) 推荐(0)