摘要: 过滤器实现javax.servlet.Filter 接口,对某个Servlet程序进行拦截处理,成为Servlet容器与该servlet程序的通信线路上的一道关卡,它可以对Servlet容器发给Servlet程序的请求和Servlet程序回发给Servlet容器的响应进行拦截,可以决定是否将请求继续... 阅读全文
posted @ 2014-09-28 22:12 soul390 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.ArrayList; 2 3 public class Main { 4 5 public static void main(String[] args) { 6 StringBuffer buffer = new Stri... 阅读全文
posted @ 2014-09-28 21:00 soul390 阅读(125) 评论(0) 推荐(0) 编辑
摘要: void getChars(intsrcBegin, intsrcEnd, char[]dst, intdstBegin) 将字符从此字符串复制到目标字符数组。//不能被继承public final class StringBuffer extends AbstractStringBuilder ... 阅读全文
posted @ 2014-09-28 10:28 soul390 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.ArrayList; 2 3 public class Main { 4 5 public static void main(String[] args) { 6 ArrayList list = new ArrayList... 阅读全文
posted @ 2014-09-28 09:20 soul390 阅读(342) 评论(0) 推荐(0) 编辑