摘要:
手动下载对应jar放在本地仓库 -> Update Dependencies(Maven4Myeclipse:eclipse上maven插件) 阅读全文
摘要:
抽象工厂模式: 1、抽象工厂模式是工厂方法模式的扩展【工厂方法模式:仅生产一种产品、抽象工厂模式:生产同一系列的多种产品】 阅读全文
摘要:
//产品接口 package com.wch.project; public interface HairInterface { public void draw(); } //产品类 package com.wch.project; public class LeftHair implements HairInterface{ @Override public vo... 阅读全文
摘要:
Map<String, String[]> map = request.getParameterMap(); 阅读全文
摘要:
阅读全文
摘要:
相对于<where>标签 <trim prefix="where" prefixOverrides="and/or"></trim> 相对于<set>标签 <trim prefix="set" suffixOverrides=","></trim> 阅读全文
摘要:
public static void main(String[] args) throws IOException { File file = new File("d:/myfolder"); //myfolder文件夹 FileFilter filter = new FileFilter() { 阅读全文
摘要:
读写带缓存功能 BufferedInputStream/BufferedOutputStream 读写基本数据类型(Integer、String、boolean ...) DataInputStream/DataOutputStream 读写对象类型 (readObject/writeObject) 阅读全文
摘要:
ajax对象创建和使用 阅读全文
摘要:
一、泛型中T、E ... 是泛型类、泛型方法定义时候用的。 1.泛型类定义在类后面 紧跟类名后面 public class TestClassDefine<T>{} 2.泛型方法定义在方法装饰符后面 紧跟修饰符后面(public) public <T> T testGenericMethodDefi 阅读全文