
java
iteye_11596
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
java代理
import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; public class DynamicProxy implements InvocationHandler{ private Object obj...原创 2011-03-23 21:34:26 · 74 阅读 · 0 评论 -
spring3 + hibernate3 + maven + eclipse
http://viralpatel.net/blogs/2010/07/generate-dynamic-web-project-maven-eclipse-wtp.html http://viralpatel.net/blogs/2010/11/spring3-mvc-hibernate-maven-tutorial-eclipse-example.html 安装M2Eclipse插件...原创 2011-04-17 17:59:39 · 206 阅读 · 0 评论 -
Java Atomic Access
http://docs.oracle.com/javase/tutorial/essential/concurrency/atomic.html Reads and writes are atomic for reference variables and for most primitive variables (all types except long and double). ...原创 2015-11-30 16:41:57 · 150 阅读 · 0 评论 -
java.security.NoSuchAlgorithmException: DES SecretKeyFactory not available
Eclipse Java EE IDE for Web Developers. Version: Juno Service Release 2 Build id: 20130225-0426 apache-tomcat-7.0.42 jdk1.6.0_38 调试一个web程序,SecretKeyFactory keyFactory = SecretKeyFactory.getInstan...原创 2016-04-15 12:42:24 · 1454 阅读 · 0 评论 -
swig/java
摘自 http://www.swig.org/translations/chinese/tutorial.html /* File : example.c */ #include <time.h> double My_variable = 3.0; int fact(int n) { if (n <= 1) return 1; ...原创 2014-02-08 09:51:12 · 131 阅读 · 0 评论