`
文章列表
各服务器IP如下:Searching subhosts on domain google.comAmerica.google.comIP Address #1:64.233.183.104IP Address #2:64.233.183.147IP Address #3:64.233.183.99IP Address #4:64.233.183.103Asia.google.comIP Address #1:66.102.7.99IP Address #2:66.102.7.147IP Address #3:66.102.7.104Eudora.google.comIP Address ...

JDBC SQL字符转移

    博客分类:
  • Java
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 problem for the database because SQL will interpret it as a string delimiter. It is not good ...

URL转码

    博客分类:
  • Java
import java.io.UnsupportedEncodingException; import java.net.URLDecoder; /** * Covert the encoded URL to decoded URL * @author p * */ public class CoderConverter { public static String decode(String s, String code){ try { return URLDecoder.decode(s,code); } catch ...
  com.microsoft.sqlserver.jdbc.SQLServerException: 只进结果集不支持请求的操作   解决方法:   stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);   其意为创建一个滚动的结果集,相信大家看参数的英文意思,也能明白啦,scroll=滚动   如果没有加上这个参数,那么这个结果集就只能迭代一次,就不能rs.XXXX调用ResultSet下的某些方法了
1.       Google在研究博客中总结了他们2011年的精彩论文《Excellent Papers for 2011》,包括社会网络、机器学习、人机交互、信息检索、自然语言处理、多媒体、系统等各个领域,很精彩的论文集锦。http://googleresearch.blogspot.com/2012/03/excellent-papers-for-2011.html 或者zibuyu的BLOG http://blog.sina.com.cn/s/blog_574a437f0100y6zy.html 2.       Best paper awards for AAAI,ACL, C ...
一、安装配置 1、安装、配置JDK,Hadoop(略)   2、下载Mahout,http://mahout.apache.org/ ,非源码下载解压即可用(src为源码包,需要用maven编译)。   3、添加环境变量修改/etc/profile 或者 ~/.bashrc ,添加export JAVA_HOME=/opt/java/jdk1.7.0_05export JAVA_HOME=/home/alan/hadoop/hadoop-1.0.3 export HADOOP_CONF_DIR=/home/alan/hadoop/hadoop-1.0.3export MAHOUT_H ...
在Ubuntu中有如下几个文件可以设置环境变量/etc/profile:在登录时,操作系统定制用户环境时使用的第一个文件,此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行./etc/environment:在登录时操作系统使用的第二个文件,系统在读取你自己的profile前,设置环境文件的环境变量~/.profile:在登录时用到的第三个文件是.profile文件,每个用户都可使用该文件输入专用于自己使用的shell信息,当用户登录时,该文件仅仅执行一次!默认情况下,他设置一些环境变量,执行用户的.bashrc文件./etc/bashrc:为每一个运行bash shel ...
  安装ssh  

Ubuntu 12 安装 Java

    博客分类:
  • 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代码 

RDF data

   http://km.aifb.kit.edu/projects/btc-2012/
昨日从某点评网爬取数据 网页编码为 UTF-8, 本地的系统默认编码为 GBK 直接使用 BufferReader 读取 HttpURLConnection 打开的 stream,会导致乱码 使用 DataInputStream 的 readUTF 也引起乱码 最后使用如下代码,得到正确的文本,如下: BufferedReader dis; String content = new String(); String line; try { dis = new BufferedReader(new InputStreamReader(is, &qu ...
1. 查询串为 纯汉字,查询出被拆分为单个字,然后使用全文检索,尽可能找出包含所有查询串的 POI,查找范围为POI拥有的所有文本信息。 例如搜索 “顺轩”,返回结果为: http://www.dianping.com/search/keyword/1/0_%E9%A1%BA%E8%BD%A9, 而搜索“轩顺”,返回结果为: http://www.dianping.com/search/keyword/1/0_%E8%BD%A9%E9%A1%BA 两个搜索返回的结果是一致的 --- 包含查询串的POIs;返回列表的排序规则可以总结为: a. POI中查询出是否按照查询串 ...

Boyer-Moore

#include<stdio.h> #include<string.h> //unsigned short jump(char c); int search(char*, char*); int char_index(char,char*); int main(void) { //char* pattern = "norn"; //char* pattern = "grow"; //char* pattern = "corn"; char* pattern = "door ...

二叉堆

#include <stdio.h> #include <stdlib.h> /** * 经常使用 heap 实现 优先级队列 */ #define MAX_SIZE 100 #define True 1 #define False 0 typedef short Boolean; typedef struct node* pNode; struct node{ int data; }; pNode heap[MAX_SIZE+1]; /// index of first el ...

Quick Sort

    博客分类:
  • Sort
/* * File: main.c * Author: lonecat * * Created on 2011年4月3日, 下午4:41 */ #include <stdio.h> void swap(int* v1, int* v2){ int tmp = *v1; *v1 = *v2; *v2 = tmp; } int partition(int* num, int p, int r ){ // printf("in partition\n"); printf(& ...
Global site tag (gtag.js) - Google Analytics