?? lzwtut.java
字號:
//Example Program that uses the LZW code to deomonstrate its cabilities//
//Very Somple and easy to understand
public class LzwTut {
//Lots of difficult to understand code here......
//Just kidding.
//We Use the Lzw Class which does all the work.
public static void main(String[] args) {
// Create application frame.
Lzw lzNew = new Lzw(12);
lzNew.compressFile("ogif.c","ngif.c");
lzNew.decompressFile("ngif.c","ugif.c");
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -