|
|
ZipMix - Zip合并工具
|
|
加入时间: 2008-11-22 |
点击数: 71 |
|
ZipMix.exe WIN32 command line 8,704 bytes (02/21/2007)
Sometimes, when you run 2 different .ZIP programs on the same data
(PKZIP & KZIP for example), some files get compressed better in one
program, while other files get compressed better in the other. ZIPMIX
will take the best files from each one and create a new output file,
which is guaranteed to be equal to or smaller in size to both of the
input files. ZIPMIX can also be used to perform boolean operations on
ZIP files, such as merging 2 ZIP files together, or updating a new file
(with some tricks).
ZipMix.c The source code 4,759 bytes (02/21/2007)
RekZip.bat WIN32 command line 379 bytes (07/06/2006)
Here's a little batch file I wrote for KZIP to directly re-compress an
existing ZIP file. I have tried to make the batch file as safe as
possible - meaning you shouldn't lose the original file if there's an
error during one of the steps. I think the worst that can happen is you
end up with a harmless temporary sub-directory - and that's only if
your computer freezes! If you really want to feel cool, you can
re-compress a whole directory of ZIP files using this command: "for %i
in (*.zip) do rekzip %i" : ) Someday, I might actually get around to
integrating this functionality into KZIP.EXE.. |
|
|
|
|
Sun早期公布的MIDP源代码和文档
|
|
加入时间: 2008-11-22 |
点击数: 163 |
|
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源代码和文档
|
|
加入时间: 2008-11-22 |
点击数: 87 |
|
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数据库引擎
|
|
加入时间: 2008-02-13 |
点击数: 555 |
作者: 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; |
|
|
|
|
PngOut - PNG极限压缩工具
|
|
加入时间: 2008-11-22 |
点击数: 98 |
|
WIN32 command line 40,960 bytes ( 11/20/2008 )
PNGOUT optimizes the size of .PNG files losslessly. It uses the same
deflate compressor I wrote for KZIP.EXE (see below). With the right
options, it can often beat other programs by 5-10%. That includes
pngcrush -brute, optipng -o7, advpng -z4, etc.. PNGOUT is a great tool
for optimizing the size of web pages or squeezing game content onto
mobile devices. Almost all .PNG files on my website were optimized with
PNGOUT. For a detailed description of the options, please check out thePNGOUT tutorial written by Kerry Watson. Click here for license.
虽然本版本在J2ME领域作为Png压缩工具..但是还有其他许多的功能..自己研究一下吧 |
|
|