Tag Archives: Java

JSP include 乱码解决方案

JSP在include时如果不在被Include文件中声明编码, 在外部文件中将出现乱码. 解决方案就是:
在被Include jsp文件中声明:
<%@ page language="java" contentType="text/html; charset=

More…

Posted in Java | Tagged , | Leave a comment

Java使用SimpleDateFormat设置时间显示到特定时区

第一次搞乱时区后, 直接修改服务器时区为+8区(See: Linux查看及修改时区).
随着代码的不断扩张, 蔓延到若干角落, 只好用UTC时间, 显示时可使用SimpleDateFormat控制下输出:
SimpleDateFormat sdf = new SimpleDateFormat(&q

More…

Posted in Java | Tagged , , | Leave a comment

使用Twitter4J从Java桌面程序更新Twitter

Java端自动更新Twitter状态 – 不需要用户授权或输入Code. 使用Twitter4J类库

Posted in SNS | Tagged , , | Leave a comment

SQL中判断时间

需求: (使用JDBC) 在SQL中增加时间限制
简单错误的写法:
SimpleDateFormat df = new SimpleDateFormat(“yyyy-MM-dd”);
String dateNow = df.format(new Date(System.cur

More…

Posted in Java | Tagged , | Leave a comment

话说今天看Struts2, HelloWorld都搞了半天

之前看过Hibernate, 看过一点Spring, 昨天组织要求全面发展再加把劲看下Struts.

心想写了这么久程序了, 无非就是配置几个XML, 加几个Jar File, 写个Action, 编个JSP不就完了? 结果就这么简单的事折腾的我错过了大娘水饺盖浇饭的供应时间 — 9点后永和豆浆/大娘水饺都没有米饭供应了, 妈的, 开个饭店还这么多P事.

More…

Posted in Java | Tagged , | Leave a comment