上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 57 下一页

2012年12月3日

c# 获取网络标准时间

摘要: public static DateTime DataStandardTime() {//返回国际标准时间 //只使用的时间服务器的IP地址,未使用域名 string[,] 时间服务器 = new string[14, 2]; int[] 搜索顺序 = new int[] { 3, 2, 4, 8, 9, 6, 11, 5, 10, 0, 1, 7, 12 }; 时间服务器[0, 0] = "time-a.nist.gov"; 时间服务器[0, 1] = "129.6.1... 阅读全文

posted @ 2012-12-03 22:07 雨渐渐 阅读(3208) 评论(0) 推荐(1) 编辑

Mon Dec 03 09:40:40 CST 2012 转时间格式

摘要: package hello;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;import java.util.Locale;public class TC { /** * @param args */ public static void main(String[] args) { String str = "Mon Dec 03 09:40:40 CST 2012"; Date date = parse(str... 阅读全文

posted @ 2012-12-03 11:17 雨渐渐 阅读(228) 评论(0) 推荐(0) 编辑

2012年11月29日

本地win7搭建SVN

摘要: SVN客户端下载:http://tortoisesvn.net/downloads.html 分32位 64位参考源:http://www.cnblogs.com/gossip/archive/2011/10/30/2229214.html文中的批处理这样写:sc create svnserve binpath= "D:\Program Files\Subversion\bin\svnserve.exe --service -r d:\MYSVN" depend= Tcpip start= autosc start svnservepause是三行上述命令其实就是创建名为s 阅读全文

posted @ 2012-11-29 22:04 雨渐渐 阅读(230) 评论(0) 推荐(0) 编辑

2012年11月21日

导出htmlcleaner

摘要: 在包上 export jar即可 阅读全文

posted @ 2012-11-21 17:03 雨渐渐 阅读(113) 评论(0) 推荐(0) 编辑

nutch的各个版本

摘要: http://archive.apache.org/dist/nutch/ 阅读全文

posted @ 2012-11-21 16:41 雨渐渐 阅读(119) 评论(0) 推荐(0) 编辑

nutch 导入ecl

摘要: 第一步:添加conf目录到buid->Classpath.我是这样做的: 选中所建的Nutch工程,依次点击Project(任务栏上)->Properties->Java Build Path ->Libraries(右上第三个选项)->Add Class Folder... (右边第五个) ->Create New Folder...(弹出框下面) ->Advanced》 ->勾上Link to folder in the file system ->Browse... ->选择你的conf目录路径: (e.g.with mine 阅读全文

posted @ 2012-11-21 16:39 雨渐渐 阅读(119) 评论(0) 推荐(0) 编辑

2012年11月20日

备份

摘要: http://htmlcleaner.sourceforge.net/http://blog.csdn.net/amuseme_lu/article/details/6724734 nutch1.3http://blog.csdn.net/clong1112/article/details/1666627 nutch配置文件http://hadoop.apache.org/common/docs/r0.19.2/cn/quickstart.htmlhttp://blog.csdn.net/savechina/article/details/5656937 windows下搭建hadoop开发环 阅读全文

posted @ 2012-11-20 14:23 雨渐渐 阅读(93) 评论(0) 推荐(0) 编辑

2012年11月13日

iterator

摘要: 阅读全文

posted @ 2012-11-13 17:28 雨渐渐 阅读(122) 评论(0) 推荐(0) 编辑

linux 启动nutch

摘要: [root@localhost nutch]# export JAVA_HOME=/usr/java/jdk1.7.0[root@localhost nutch]# bin/nutch crawlUsage: Crawl <urlDir> -solr <solrURL> [-dir d] [-threads n] [-depth i] [-topN N][root@localhost nutch]# bin/nutch crawl urls -dir urls -threads 3 -depth 5 -topN 1000 阅读全文

posted @ 2012-11-13 11:46 雨渐渐 阅读(207) 评论(0) 推荐(0) 编辑

2012年11月12日

java 求交集

摘要: Collection<String> A=new ArrayList<String>(); Collection<String> B=new ArrayList<String>(); A.add("A"); A.add("B"); A.add("C"); B.add("D"); B.add("B"); B.add("C"); System.out.println(A); System.out.println(B); bool.. 阅读全文

posted @ 2012-11-12 09:47 雨渐渐 阅读(176) 评论(0) 推荐(0) 编辑

上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 57 下一页

导航