摘要: 时间戳:201310142227废话少说,直接上代码:package com.dannalapp.main;import com.avos.avoscloud.GetCallback;import com.avos.avoscloud.GetDataCallback;import com.avos.avoscloud.ParseException;import com.avos.avoscloud.ParseFile;import com.avos.avoscloud.ParseObject;import com.avos.avoscloud.ParseQuery;import com.avo 阅读全文
posted @ 2013-10-14 22:29 朝野布告 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 创建/存储数据:ParseObject gameScore = new ParseObject("GameScore");gameScore.put("score", 1200);gameScore.put("playerName", "steve");gameScore.put("level", 10);try { gameScore.saveInBackground();} catch (ParseException e) { e.getMessage();}查询/获得数据:ParseQue 阅读全文
posted @ 2013-10-14 17:33 朝野布告 阅读(186) 评论(0) 推荐(0) 编辑