`
hacker_zxf
  • 浏览: 148171 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论
文章列表
Java与模式(附光盘软件工程研究院) 66.0元  最近看了这本书,感觉讲的不错;
JAVA的容器---List Map Set  Collection ├List │├LinkedList │├ArrayList │└Vector │ └Stack └Set Map ├Hashtable ├HashMap └WeakHashMap Collection接口   Collection是最基本的集合接口,一个Collection代表一组Object,即Collection的元素(Elements)。一些 Collection允许相同的元素而另一些不行。一些能排序而另一些不行。Java SDK不提供直接继承自Collection的类,Java SDK提供的类都是继承自Col ...
@Retention : RetentionPolicy. SOURCE,CLASS,RUNTIME @Target :ElementType.TYPE,FIELD,METHOD,PARAMETER,CONSTRUCTOR,LOCAL_VARIABLE,ANNOTATION_TYPE,PACKAGE @Retention(RetentionPolicy.RUNTIME) @Target(value = ElementType.FIELD) public @interface In { /** * 范围 * * @return ...
http://subclipse.tigris.org/update_1.6.x
想找几jar库访问地址:   http://repo1.maven.org/maven2,里面的库很全,版本也很多. 摘自: http://www.cnblogs.com/baoguo/archive/2009/03/04/1402701.html 前段时间研究过一下maven,中途因为工作忙搁置了一段时间,重新再看时发现安装过程基本忘光。只好找资料看然后再来一遍,将 maven,artifactory和m2eclipse安装使用的全过程记录整理出来,备忘。另外我想这些资料应该比较适合maven的入门新手,照做 一遍就可以完成三个东西的安装设置,然后就可以学习和使用了。 一. 安装mave ...
创建普通应用项目: mvn archetype:create -DgroupId=com.byread -DartifactId=blog 创建WEB项目: mvn archetype:create -DgroupId=com.byread -DartifactId=blogweb -DarchetypeArtifactId=maven-archetype-webapp 创建appfuse项目: mvn archetype:create -DarchetypeGroupId=org.appfuse.arche ...
永远只能更新对象的成员变量时加锁 永远只能在访问有可能被更新对象的成员变量时加锁 永远不要在调用其他对象的方法时加锁
下载: http://maven.apache.org/download.html 超级pom.xml (pom 语法 maven 权威指南 9.3) ${M2_HOME}/lib 中的 maven-2.0.9-uber.jar 在 org.apache.maven.project 下一个名为 pom-4.0.0.xml 的文件 这是所有pom的父配置; 命令: 生成普通工程:   mvn archetype:create -DgroupId=com.sefer.employ -DartifactId=Employ-sys -DpackageName=com.sefer.employ ...
sudo apt-get install subversion ubuntu svn 升级 Step 1: 下载安装包(两个) wget http://subversion.tigris.org/downloads/subversion-deps-1.6.2.tar.gz wget http://subversion.tigris.org/downloads/subversion-1.6.2.tar.gz Step 2: 安装,将上面的2个包拷贝到同一目录,然后解压缩 $ tar xvzf subversion-1.6.2.tar.gz;tar xvzf subversion-dep ...
我本地用的是1.6.2,脚本如下: #!/bin/sh echo "This script will reconfigure subversion to work with certs correctly." echo "Steps outlined by dcrooke and compiled into this script by Kalosaurusrex" echo "Please see the ubuntuforums.org thread for more information, questions o ...
转自:http://www.sinojava.com/bbs/redirect.php?tid=1316&goto=lastpost JAVA中枚举(Enum)的系列文章 - 反向查找、总结 在就是一个类一文中说到枚举也可以自定义构造函数,可以用属性来关联更多的数据。那如果我们有这样的一种需要该怎么 ...

反射例子

定义一个用户,作为被反射对象; public class User { public String username; private String password; public static int age = 12; public User(String username, String password) { super(); this.username = username; this.password = password; } pub ...
  HashMap map = new HashMap();       Class c = this.getClass();       // 根据子类声明的field循环取值     for (int i = 0; i < c.getDeclaredFields().length; i++) {        try {       // 获取field       Field f = c.getDeclaredFields()[i];         String key = f.getName();         // 执行对应的get方法       ...
配置: <beans> <import resource="classpath:org/codehaus/xfire/spring/xfire.xml" /> <bean id="webAnnotations" class="org.codehaus.xfire.annotations.jsr181.Jsr181WebAnnotations" lazy-init="false"/> <bean id="handlerMapping&q ...

utf转UnicodeBig

今天遇到一个奇怪的问题,代码如下: public static String utfToUni(String str) { if (str == null) { return str; } try { byte[] ss = str.getBytes("UTF-8"); str = new String(ss, "UnicodeBig"); } catch (UnsupportedEncoding ...
Global site tag (gtag.js) - Google Analytics