摘要: 文件及内容的查找替换1.查找文件名中带xxxxx的#find . -name '*xxxxx*'2.查找目录名中带xxxxx的#find . -name '*xxxxx*' -type d3.查找文件名中带xxxxx的,忽略大小写#find . -iname '*xxxxx*'4.查找目录下文件内容... 阅读全文
posted @ 2015-07-02 12:00 feilv 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 实例1 View Code 阅读全文
posted @ 2015-06-17 17:38 feilv 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 实例1:画线画字济南景点步行图 View Code 阅读全文
posted @ 2015-06-15 16:25 feilv 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1. 基础面向对象实例function Lecture(name, teacher) { this.name = name; this.teacher = teacher;}Lecture.prototype.display = function () { return this.teache... 阅读全文
posted @ 2015-05-21 08:27 feilv 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 模拟微步View Code拖动连线跟随raphael拖动测试1测试2测试3测试4View Code模拟微步2View Code 阅读全文
posted @ 2015-05-14 17:40 feilv 阅读(798) 评论(0) 推荐(0) 编辑
摘要: eclipse javaEEEclipse Java EE IDE for Web Developers.Version: Indigo Service Release 2Build id: 20120216-1857(c) Copyright Eclipse contributors and ot... 阅读全文
posted @ 2015-04-24 11:03 feilv 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 基础知识变长参数实例public class ParamTest { public static void main(String[] args) { test("hello", "world", "this", "is", "hahaha"); } public s... 阅读全文
posted @ 2015-04-15 11:59 feilv 阅读(194) 评论(0) 推荐(0) 编辑
摘要: tomcat发布目录设置编辑tomcat/conf/server.xml在和间添加如下:启动tomcat后即可访问:http://localhost:8080/myappweb应用目录结构d:/myapp/*.jspd:/myapp/WEB-INF/web.xmld:/myapp/WEB-INF/c... 阅读全文
posted @ 2015-04-14 14:44 feilv 阅读(6405) 评论(0) 推荐(1) 编辑
摘要: import java.util.List;import java.util.ArrayList;import java.util.Queue;import java.util.LinkedList;public class Test3 { public static void main(St... 阅读全文
posted @ 2015-01-13 08:37 feilv 阅读(216) 评论(0) 推荐(0) 编辑
摘要: import java.util.Queue;import java.util.LinkedList;public class ProducerConsumerDemo { public static void main(String[] args) { MyQueue q = new MyQue... 阅读全文
posted @ 2015-01-09 17:39 feilv 阅读(439) 评论(0) 推荐(0) 编辑