摘要:
虚拟主机 (Virtual Host)是在同一台机器搭建属于不同域名或者基于不同 IP 的多个网站服务的技术. 可以为运行在同一物理机器上的各个网站指配不同的 IP 和端口, 也可让多个网站拥有不同的域名.Apache 是世界上使用最广的 Web 服务器, 从 1.1 版开始支持虚拟主机. 本文将讲... 阅读全文
摘要:
Spring-framework source codegit url: git clone git://github.com/SpringSource/spring-framework.git导入IDERun ./import-into-eclipse.sh or read import-into... 阅读全文
摘要:
/** * Take a String which is a delimited list and convert it to a String array. * A single delimiter can consists of more than one charact... 阅读全文
摘要:
In Java, you can use StringTokennizer class to split a String into different tokenas by defined delimiter.(space is the default delimiter). Here’re tw... 阅读全文
摘要:
/** * Delete any character in a given String. * @param inString the original String * @param charsToDelete a set of characters to dele... 阅读全文