摘要: 悲剧啊,发现原来写入数据库的数据有些问题,需要对这批数据进行处理只有写几行代码连接到数据库批量修改了。 需要操作的字段数据:public class GarbageData { private long id; private String comment; public void setID(long id){ this.id = id; } public long getID(){ return this.id; } public void setComment(String comment){ this.comment = comment; } public String ... 阅读全文
posted @ 2012-12-19 17:13 cstar(小乐) 阅读(286) 评论(0) 推荐(0) 编辑