`
文章列表

[置顶] notes

有关设计模式的:《Elements of Reusable Object-Oriented Software》一书由Erich Gamma、Richard Helm、Ralph Johnson 和 John Vlissides四位作家合著而成,通常这四位作家叫做GoF(Gang of Four,四人组)。 该书提出了23种设计模式,又称GoF设计模式,这些设计模式针对面向对象设计(OOD)中的某些常见问题提出了具体的解决 方法(模式)。 [创 建型模式] 设计模式之 Abstract Factory - 抽象工厂模式 Abstract Fact ...

事务传播与隔离

http://blog.csdn.net/yi16881/article/details/5642829 http://developer.51cto.com/art/200906/130699.htm

java 压缩API

    博客分类:
  • Java
从 Java 支持压缩/解压缩开始,无法缺省支持中文文件名。 最近被逼急了,翻看 Java 源代码,发现只要设置如下属性即可: 启动虚拟机时:-Dsun.zip.encoding=default 或程序中:System.setProperty("sun.zip.encoding", "default"); 当然,如果确认只用中文字符集,直接设置 -Dsun.zip.encoding=GBK 也OK

字符编码

    博客分类:
  • Java
1、Java文件编译后形成class 这里Java文件的编码可能有多种多样,但Java编译器会自动将这些编码按照Java文件的编码格式正确读取后产生class文件,这里的class文件编码是Unicode编码(具体说是UTF-16编码)。 因此,在Java代码中定义 ...

today

eclipse3.7.1 M20110909-1335 2:install RSE(remote terminal) + rse runtime + rse useraction 3:install cdt-master 8.0.2 #4:PTP all ptp-master-ptp-master-5.0.7-201203231413 http://fenger-chui.iteye.com/category/173111 Jnative使用深入解析 http://www.motherboardpoint.com/arm-elf-gdb-hello-and-cygwin-t89 ...

jnative

http://jnative.free.fr/SPIP-v1-8-3/article.php3?id_article=4 public class JnativeRect extends AbstractBasicData<JnativeRect>{ protected JnativeRect(JnativeRect lValue) throws NativeException {           super(null);           createPointer();           mValue = this; } public int left; p ...

SSL

    博客分类:
  • Java
JAVA 双向SSL,SOCKET客户端/服务端 [/size][size=small] 实现技术: JSSE(Java Security Socket Extension) Server需要: 1)KeyStore: 其中保存服务端的私钥 2)Trust KeyStore:其中保存客户端的授权证书 Client需要: 1)KeyStore:其中保存客户端的私钥 2)Trust KeyStore:其中保存服务端的授权证书 使用Java自带的keytool命令,去生成这样信息文件: 1)生成服务端私钥,并且导入到服务端KeyStore文件中 2)根据私钥,导出服务端证书 3)将服务端证书 ...

RCP Notes

Clear cache: The easiest way around this is to avoid overwriting or tweaking previous installs. Failing that, however, you can run Eclipse using the -clean command-line argu- ment or put the osgi.clean=true system property in the product’s config.ini or launcher initialization file.
http://download.eclipse.org/technology/babel/babel_language_packs/R0.9.1/indigo/indigo.php#zh

类加载

    博客分类:
  • JVM
JVM加载class文件的原理 http://blog.csdn.net/lihe2008125/article/details/3864983 JVM:加载、链接和初始化 http://blog.csdn.net/e5945/article/details/5648102 深入JVM——常量池 http://xtu-tja-163-com.iteye.com/blog/769996 JVM 内存初学 (堆(heap)、栈(stack)和方法区(method) ) http://www.blogjava.net/mlzry0612/articles/223420.html

线程文摘

    博客分类:
  • Java
ThreadLocal http://blog.csdn.net/qjyong/article/details/2158097

OS-WS-ARCH

    博客分类:
  • Java
    参数名称 描述 osType 目标操作系统类型 windowSystemType 目标视窗系统类型 architecture 目标系统架构 bootclasspath (optional) 列出编译需要的jars,用冒号或分号来分隔。这些jars是JDK或者JRE的补充。需要指定这个参数仅仅在你交叉编译eclipse或者使用一个JDK但没有使用一个rt.jar文件在所包含的java库里。默认rt.jar在你的path里。 compilelibs

notes

  final Table table = tv.getTable();           table.addListener(SWT.MeasureItem, new Listener() {    //向表格增加一个SWT.MeasureItem监听器,每当需要单元内容的大小的时候就会被调用。      public void handleEvent(Event event) {          event.width = table.getGridLineWidth();    //设置宽度          event.height = (int) Math.flo ...

JAXB

    博客分类:
  • Java
HashMap support: http://www.chinasb.org/archives/2011/04/1550.shtml http://stackoverflow.com/questions/5317172/how-to-use-hashmap-properties-with-jaxb   Jaxb处理java对象和xml之间转换常用的annotation有: http://www.cnblogs.com/fragranting/archive/2012/03/25/xml--jaxb.html

XML选择器

    博客分类:
  • Java
  xpath路径表达式笔记 http://www.ruanyifeng.com/blog/2009/07/xpath_path_expressions.html   CSS选择器笔记   http://www.ruanyifeng.com/blog/2009/03/css_selectors.html
Global site tag (gtag.js) - Google Analytics