上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 57 下一页

2012年8月28日

linux命令

摘要: lsb_release -a 查看linux版本鸟哥的菜:http://linux.vbird.org/linux_server/0370samba.phplinux 计划任务service crond statuscrond (pid 2390) 正在运行.../sbin/service cron... 阅读全文

posted @ 2012-08-28 12:51 雨渐渐 阅读(316) 评论(0) 推荐(0) 编辑

nutch1.5 linux下的安装

摘要: 主要参考源 http://wiki.apache.org/nutch/NutchTutorial第一部分:安装1 建目录,下载,解压mkdir nutchwget "http://mirror.bjtu.edu.cn/apache/nutch/1.5/apache-nutch-1.5-bin.tar.gz"tar zxvf apache-nutch-1.5-bin.tar.gz -C /root/wqj/nutch2 测试,及赋予权限bin/nutchPermission deniedchmod +x bin/nutch如果出现上图,则证明nutch1.5安装成功了第二部分 阅读全文

posted @ 2012-08-28 10:59 雨渐渐 阅读(492) 评论(0) 推荐(0) 编辑

2012年8月13日

log4j Test

摘要: package test;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;public class Log4jTest { private static Log logger = LogFactory.getLog(Log4jTest.class); public static void main(String[] args) { logger.error("ERROR"); logger.debug("DEBUG"); ... 阅读全文

posted @ 2012-08-13 13:55 雨渐渐 阅读(285) 评论(0) 推荐(0) 编辑

myeclipse导入第三方jar包

摘要: 1 右击工程根目录,选择Properties2 点击Java Build Path,选择Libraries标签,单击Add External JARs3 找到需要的jar包即可 阅读全文

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

2012年8月9日

Csv标准读写

摘要: class Program { static void Main(string[] args) { //TestReadCsv(); TestWriteCsv(); Console.ReadLine(); } static void TestWriteCsv() { using (FileStream fileStream = new FileStream("comment_1.csv", FileMode.OpenOrCreat... 阅读全文

posted @ 2012-08-09 17:21 雨渐渐 阅读(280) 评论(0) 推荐(0) 编辑

2012年8月7日

局域网内读取文件

摘要: static void Main(string[] args) { FileStream fs = new FileStream(@"\\1.2.3.4\XXX\Debug\log\log.txt", FileMode.Open, FileAccess.Read); StreamReader reader = new StreamReader(fs, Encoding.GetEncoding("GBK")); String log=reader.ReadToEnd(); reader.Clos... 阅读全文

posted @ 2012-08-07 11:49 雨渐渐 阅读(211) 评论(0) 推荐(0) 编辑

2012年8月5日

xml序列化忽略某个字段

摘要: [XmlIgnore] public int Id { get; set; } 阅读全文

posted @ 2012-08-05 15:41 雨渐渐 阅读(449) 评论(0) 推荐(0) 编辑

2012年8月2日

.net 匹配所有标点符号 java 匹配所有标点符号

摘要: static void Main(string[] args) { Regex regex=new Regex("\\p{P}"); String str = " ;。、,!\"#$%&'*+,-./:;<=>?@[\\]^_`{|}~"; MatchCollection mc=regex.Matches(str); if (mc != null && mc.Count != 0) { foreach (Match m in mc)... 阅读全文

posted @ 2012-08-02 17:22 雨渐渐 阅读(365) 评论(0) 推荐(0) 编辑

2012年8月1日

字符串中夹杂unicode字符,如何解码

摘要: static void Main(string[] args) { Console.WindowWidth = 120; WebUtil web = new WebUtil(); while (true) { Console.WriteLine("输入地址:"); string url = Console.ReadLine(); Console.WriteLine(url); ... 阅读全文

posted @ 2012-08-01 11:18 雨渐渐 阅读(387) 评论(0) 推荐(0) 编辑

2012年7月17日

谷歌Host

摘要: https://smarthosts.googlecode.com/svn/trunk/hostsC:\WINDOWS\system32\drivers\etc 复制,黏贴到 hosts里面就行 https://addons.mozilla.org/en-US/firefox/addon/video-sniffer/ 视频采集 找到实际的swf文件地址http://code.google.com/p/webvideosniffer/ 阅读全文

posted @ 2012-07-17 14:34 雨渐渐 阅读(72) 评论(0) 推荐(0) 编辑

上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 57 下一页

导航