Java
文章平均质量分 62
iteye_7838
这个作者很懒,什么都没留下…
展开
-
Ubuntu 12 安装 Java
第一步,下载jdk-7u5-linux-i586.tar.gz 到 Oracle 官网下载 JDK 7 。下载地址: http://download.oracle.com/otn-pub/java/jdk /7/jdk-7-linux-i586.tar.gz 第二步,解压安装 我把jdk安装到/opt/java 。Java代码 ...原创 2012-08-09 20:33:11 · 83 阅读 · 0 评论 -
Hadoop 1.0 伪分布式 配置 (转载)
安装ssh 1apt-get install ssh 安装rsync 1apt-get install rsync 配置ssh免密码登录 1ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa...原创 2012-08-09 20:33:29 · 119 阅读 · 0 评论 -
Exception:只进结果集不支持请求的操作
com.microsoft.sqlserver.jdbc.SQLServerException: 只进结果集不支持请求的操作 解决方法: stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY); 其意为创建一个滚动的结果集,相信大家看参数的英文意思...原创 2012-09-06 15:42:05 · 191 阅读 · 0 评论 -
URL转码
import java.io.UnsupportedEncodingException;import java.net.URLDecoder;/** * Covert the encoded URL to decoded URL * @author p * */public class CoderConverter { public static Strin...原创 2012-09-06 15:43:08 · 110 阅读 · 0 评论 -
JDBC SQL字符转移
An example of this is if you want to issue the following SQL command: SELECT * FROM BIRDS WHERE SPECIES='Williamson's Sapsucker' In this case, the apostrophe in "Williamson's" is going to cause a p...原创 2012-09-07 13:12:22 · 121 阅读 · 0 评论