Rising

自我学习记录,方便使用时查找。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2013年9月6日

摘要: 在Android中把内容写到XML文件中 saveXmlButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { List studentInfos = StudentInfo.initStudentInfos(); try { FileOutputStream os = openFileO... 阅读全文
posted @ 2013-09-06 17:35 Rising 阅读(4984) 评论(1) 推荐(0) 编辑

摘要: Gson可以实现对象与json字符串之间的转化,以下是在Android中的示例代码。Gson主页:https://code.google.com/p/google-gson/public class GsonActivity extends Activity { Button saveButton; Button loadButton; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); s... 阅读全文
posted @ 2013-09-06 15:54 Rising 阅读(23199) 评论(0) 推荐(0) 编辑