上一页 1 ··· 4 5 6 7 8
  2012年8月29日
摘要: 服务器配置成cp936 (1)使用isql查看当前已经安装的字符集 use master select id,name from syscharsets (2)查看当前使用的缺省字符集 sp_configure "default char" (3)因为上面的列表中没有安装cp936,所以就安装cp936字符集 进入目录C:\sybase\charsets\cp936 运行命令 charset -Usa -Plongtop binary.srt cp936 (4)验证是否确实安装了cp936字符集 同步骤(1) (5)把系统的当前缺省字符集设置为cp936 sp_configure "default char",171 (6)重启Sybase服务,使更改生效 (7)更改DB客户端的字符集 数据库的charset修改为cp936时,使用isql按如下的方式 isql -Usa -P -Sdbserver -Jcp936 阅读全文
posted @ 2012-08-29 11:24 oceanking 阅读(10085) 评论(0) 推荐(0) 编辑
  2012年6月3日
摘要: Using filters to customize scanningBy default, classes annotated with @Component, @Repository, @Service, @Controller, or a custom annotation that itself is annotated with @Component are the only detected candidate components. However, you can modify and extend this behavior simply by applying custom 阅读全文
posted @ 2012-06-03 10:03 oceanking 阅读(1272) 评论(0) 推荐(0) 编辑
摘要: 关键词:Class.forName("ClassName")Class.forName("ClassName").newInstance()详见:http://blog.csdn.net/chiuan/article/details/7022508 阅读全文
posted @ 2012-06-03 09:58 oceanking 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 一句话描述:用对象获取其类。object.getClass()Class.forName("ClassName").getMethod("MethodName")详见:http://www.cnblogs.com/rollenholt/archive/2011/09/02/2163758.html 阅读全文
posted @ 2012-06-03 09:57 oceanking 阅读(128) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8