|
|
Kzip - Jar极限压缩工具
hot!
|
|
加入时间: 2008-11-22 |
点击数: 1305 |
|
WIN32 command line 14,848 bytes ( 04/14/2007 )
My own PKZIP-compatible compressor focusing on space over speed. KZIP
creates smaller .ZIP files than PKZIP with maximum compression enabled
and even beats 7-Zip most of the time. I use a few tricks beyond what
your typical compressor will do. The main one is an exhaustive search
of all patterns. The other one is my advanced block splitter. ZIP files
created with KZIP are compatible with all of the latest .ZIP software -
just that if you use KZIP, your file will probably be smaller.
Decompression is still very fast, making KZIP the perfect tool for
shaving off seconds from download times. What will you do for a byte?
:) Click here for license. |
|
|
|
|
Sun早期公布的MIDP源代码和文档
hot!
|
|
加入时间: 2008-11-22 |
点击数: 2441 |
|
MIDP Reference Implementation Version 2.0 FCS
(November, 2002)
| Document |
Description |
| Release Notes |
Holds last-minute information about this release, including known bugs |
| Installing MIDP |
Describes how to install the MIDP Reference Implementation 2.0 FCS on
the supported platform. |
| Using MIDP |
Describes how to run the MIDP Reference Implementation 2.0 FCS, including
reference documentation in man-page format for the commands and tools. |
| Porting MIDP |
Describes how to move the MIDP Reference Implementation 2.0 FCS to a new
platform and how to build it |
| Example Overview |
Briefly describes the example MIDlets included with this release, including
screen shots |
| API Reference |
Specifies the CLDC and MIDP APIs; it was generated with the
Javadoc™ tool |
| Creating MIDlet Suites |
Describes how to create, package, publish, and test a MIDlet. |
Copyright ©
2002 Sun Microsystems, Inc. All rights reserved. |
|
|
|
|
Sun早期公布的CLDC源代码和文档
hot!
|
|
加入时间: 2008-11-22 |
点击数: 1368 |
|
CLDC Reference Implementation Version 1.1 (March, 2003)
| Document |
Description |
| Release Notes |
Provides summary information about this release. |
| KVM Porting Guide |
Gives detailed advice on how to port the CLDC 1.1 Reference Implementation
and the KVM to a new platform. |
| KWDP Specification |
The Specification of the KVM Debug Wire Protocol. |
| KNI Specification |
The Specification of the K Native Interface. |
| API Reference |
Specifies the CLDC 1.1 APIs. (Generated with the Javadoc™ tool.) |
Copyright © 2003 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
California 95054, U.S.A. All rights reserved. |
|
|
|
|
|
|
RMS数据库引擎
hot!
|
|
加入时间: 2008-02-13 |
点击数: 1688 |
作者: rongqing.rao@gmail.com QQ: 43686904
我的引擎能做的事情是:
1。对表格的操作--添加,删除,暂时不提供对表格的修改。
2。对表格数据的操作--添加,删除,修改,查询(只能对一个关键字进行查询)
下面来看下我的SQL语句。
因为是一个简单而且小型的数据库。所以我把sql也简化了。下面是个完整的操作方法
1。添加表格
create table_name column_1 column_2 column_3 ......
drop table_name
2。对数据的操作
insert table_name column_1 ..... 对于这个操作,然后具体在api调用setString(index, value)
update table_name set ..... where column_1 = key;
select table_name f_id=1; |
|
|