上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 57 下一页

2012年10月15日

getResource()和getResourceAsStream的路径问题

摘要: http://blog.sina.com.cn/s/blog_4b5bc0110100g22w.html 参考源package javaapplication;import java.io.File;public class Test { public static void main(String[] args) { File file3=new File(Test.class.getResource("file3.txt").getFile()); if(file3!=null){ System.out.println("file3.... 阅读全文

posted @ 2012-10-15 22:13 雨渐渐 阅读(306) 评论(0) 推荐(0) 编辑

nutch从网页中提取字段并索引_HtmlParseFilter

摘要: package org.apache.nutch.htmlfilter.my;import java.util.regex.*;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;import org.apache.hadoop.conf.Configuration;import org.apache.nutch.crawl.Crawl;import org.apache.nutch.metadata.Metadata;import org.apache.nutch.parse.H 阅读全文

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

2012年10月14日

简单的有限状态机

摘要: package com.smart.fsm.phonebank;public class FSM { static State[][] transTable=new State[State.values().length][10]; static{ transTable[State.start.ordinal()][1]=State.chinese; transTable[State.start.ordinal()][2]=State.english; transTable[State.chinese.ordinal()][0]=S... 阅读全文

posted @ 2012-10-14 19:56 雨渐渐 阅读(183) 评论(0) 推荐(0) 编辑

2012年9月28日

java csv操作类

摘要: http://code.google.com/p/jcsv/已用~ 阅读全文

posted @ 2012-09-28 15:06 雨渐渐 阅读(220) 评论(0) 推荐(0) 编辑

2012年9月27日

java linq

摘要: http://code.google.com/p/diting/source/browse/trunk/src/org/diting/collections/test/QueryTest.java作废了,语法过于复杂~http://xircles.codehaus.org/projects/quaere java linq 阅读全文

posted @ 2012-09-27 11:39 雨渐渐 阅读(158) 评论(0) 推荐(0) 编辑

转换中文数字成为阿拉伯数字

摘要: package converter;import java.util.HashMap;//转换中文数字成为阿拉伯数字public class chineseConverter { //万以下的单位 static HashMap<Character, Integer> m_mapUnit = new HashMap<Character, Integer>(); //万以上的单位 static HashMap<Character, Integer> m_wUnit = new HashMap<Character, Integer>(); //数字 s 阅读全文

posted @ 2012-09-27 09:54 雨渐渐 阅读(228) 评论(0) 推荐(0) 编辑

2012年9月24日

c# 汉字转拼音

摘要: http://www.yuuzle.com/csharp-chinese-characters-to-pinyin.htmlhttp://www.yuuzle.com/wp-content/uploads/file/NPinyin-0_2_4588_20158-bin.zip 阅读全文

posted @ 2012-09-24 15:45 雨渐渐 阅读(172) 评论(0) 推荐(0) 编辑

2012年9月23日

批处理启动tomcat

摘要: E:cd E:\apache-tomcat-7.0.8.\bin\startup.bat 阅读全文

posted @ 2012-09-23 16:12 雨渐渐 阅读(146) 评论(0) 推荐(0) 编辑

2012年9月19日

eclipse修改整个工作空间的编码

摘要: Window->Preferences->General->Workspace->Text file Encoding 阅读全文

posted @ 2012-09-19 09:33 雨渐渐 阅读(175) 评论(0) 推荐(0) 编辑

2012年9月10日

nutch 写一个indexingfilter插件

摘要: 参考源:http://blog.csdn.net/amuseme_lu/article/details/67802441 生成一个与urlfilter-regex类似的包结构代码路径的生成:http://www.cnblogs.com/i80386/archive/2012/09/04/2670670.html2public class MyIndexingFilter implements IndexingFilter { public static final Log LOG = LogFactory.getLog(MyIndexingFilter.class); priva... 阅读全文

posted @ 2012-09-10 11:23 雨渐渐 阅读(324) 评论(0) 推荐(0) 编辑

上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 57 下一页

导航