上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页

2015年6月4日

摘要: 1、使用对象更新 public void updateImagePath(Weibo weibo){ Session session = HibernateUtil.currentSession(); try { Transaction tx = session.beginTransa... 阅读全文
posted @ 2015-06-04 21:16 长456风 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1、条件查询 public List selectOne(int k){ Session session = HibernateUtil.currentSession(); try { Criteria c=session.createCriteria(Weibo.class); ... 阅读全文
posted @ 2015-06-04 20:46 长456风 阅读(130) 评论(0) 推荐(0) 编辑
摘要: public class CustomDialect extends MySQL5Dialect { public CustomDialect() { super(); registerHibernateType(Types.DECIMAL, Hiber... 阅读全文
posted @ 2015-06-04 20:46 长456风 阅读(1109) 评论(0) 推荐(0) 编辑

2015年6月3日

摘要: 微博获取原图时重定向到图片的url,所以获取的是乱码 jsoup默认是执行重定向的。//根据Url获取页面对应的Document public static Document getDoc1(String url){ Document doc = null; try { Connec... 阅读全文
posted @ 2015-06-03 16:41 长456风 阅读(624) 评论(0) 推荐(0) 编辑

2015年6月1日

摘要: public class JudgeCode { public static String getEncoding(String str) { String encode = "GB2312"; try { if (str.equals(new String(str.getBytes(... 阅读全文
posted @ 2015-06-01 19:16 长456风 阅读(478) 评论(0) 推荐(0) 编辑
摘要: (function(){ var i= 0; for (;i<value;i=i+1){ (function(j){ var flip_id = "#flip"+i+""; var panel_id = "#panel"+i+"";... 阅读全文
posted @ 2015-06-01 19:11 长456风 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 微博内容为utf-8编码,但是其中有部分特殊字符,无法存入数据库。先将其写入txt文件,再存入数据库,无错。证明存入txt过程中有转码操作。 用下面转码即可实现。 byte[] b = text.getBytes("utf-8");//编码 text = new String(b, "utf... 阅读全文
posted @ 2015-06-01 19:11 长456风 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 我的是字段编码和数据库不匹配,是爬的微博数据 阅读全文
posted @ 2015-06-01 15:26 长456风 阅读(142) 评论(0) 推荐(0) 编辑
摘要: clean一下工程,选择project->clean->clean project selected blow并且选择build only the selected project 阅读全文
posted @ 2015-06-01 10:50 长456风 阅读(265) 评论(0) 推荐(0) 编辑

2015年5月31日

摘要: import java.io.Serializable;import javax.persistence.*; import org.hibernate.annotations.GenericGenerator;@Entity@Table(name="student")public class ... 阅读全文
posted @ 2015-05-31 19:32 长456风 阅读(629) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页

导航