⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lzwtut.java

📁 LZW compression example with java
💻 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 + -