文章列表
package com.richontech.util.crc;
public class CalcCRC {
private char[] crc_tb = {
0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,
0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,
0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,
0x9339 ...
- 2007-07-04 11:37
- 浏览 4338
- 评论(0)
这2天使用t:jscookMenu标签经常出现js控制台报告cnThemeOffice未定义的错误,后来在网上查了发现workshop和MyEclipse生成的web.xml对于使用t:jscookMenu都有问题(我用的是workshop),于是把myfaces-simple-examples中的web.xml拿过来用,问题解决。配置文件如下:
<?xml version="1.0"?>
<!--
* Copyright 2004 The Apache Software Foundation.
*
* Licensed und ...
- 2007-06-16 13:39
- 浏览 1842
- 评论(0)
从cpcode表中查询出90-100的10条记录
SQLServer:
select * from (select top 10 * from (select top 100 * from cpcode order by code) a order by code desc) as b order by code
Oracle:
select * from (select rownum as rn1,code,name from cpcode where rownum<=100) where rn1 >=91
MySQL:
select * from cpcode li ...
- 2007-05-30 11:37
- 浏览 1475
- 评论(0)
很多人都对Java在批量数据的处理方面是否是其合适的场所持有怀疑的念头,由此延伸,那么就会认为ORM可能也不是特别适合数据的批量处理。 其实,我想如果我们应用得当的话,完全可以消除ORM批量处理性能问题这方面的顾虑 ...
- 2007-05-26 16:50
- 浏览 1262
- 评论(0)
Hibernate 提供了 3 种检索策略: <o:p></o:p>
l 延迟检索; <o:p></o:p>
l 立即检索; <o:p></o:p>
l 迫切左外连接; <o:p></o:p>
Hibernate 提供 2 种方式来确定检索策略,一中是在配置文件当中,另外一种是在程序种设置。当然,如果你在程序中设置了检索策略,那么你在配置文件中的设置也就无效了。另外的一种情况是 HQL 会忽略配置文件的设置,而总是采用迫切左外连接。
- 2007-05-26 16:37
- 浏览 1185
- 评论(0)