91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java壓縮字符串的方法是什么

小億
83
2024-03-30 16:27:58
欄目: 編程語言

在Java中,可以使用java.util.zip包中的DeflaterInflater類來進行字符串的壓縮和解壓縮操作。以下是一個簡單的示例代碼:

import java.util.zip.Deflater;
import java.util.zip.Inflater;

public class Main {
    public static byte[] compressString(String input) {
        try {
            byte[] inputBytes = input.getBytes();
            Deflater deflater = new Deflater();
            deflater.setInput(inputBytes);
            deflater.finish();
            byte[] outputBytes = new byte[inputBytes.length];
            int compressedSize = deflater.deflate(outputBytes);
            byte[] compressedBytes = new byte[compressedSize];
            System.arraycopy(outputBytes, 0, compressedBytes, 0, compressedSize);
            return compressedBytes;
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }

    public static String decompressString(byte[] input) {
        try {
            Inflater inflater = new Inflater();
            inflater.setInput(input);
            byte[] outputBytes = new byte[input.length];
            int decompressedSize = inflater.inflate(outputBytes);
            byte[] decompressedBytes = new byte[decompressedSize];
            System.arraycopy(outputBytes, 0, decompressedBytes, 0, decompressedSize);
            return new String(decompressedBytes);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }

    public static void main(String[] args) {
        String input = "Hello, this is a test string for compression.";
        byte[] compressedData = compressString(input);
        String decompressedData = decompressString(compressedData);
        System.out.println("Original data: " + input);
        System.out.println("Compressed data: " + new String(compressedData));
        System.out.println("Decompressed data: " + decompressedData);
    }
}

在上面的示例中,compressString方法用于壓縮輸入的字符串,而decompressString方法用于解壓縮輸入的字節數組。通過這兩個方法,可以實現字符串的壓縮和解壓縮操作。

0
易门县| 北流市| 多伦县| 梓潼县| 黄石市| 岑溪市| 济源市| 松滋市| 高密市| 嘉禾县| 定南县| 杨浦区| 读书| 丹巴县| 万州区| 陆河县| 商都县| 定襄县| 株洲县| 古浪县| 澄迈县| 顺义区| 信宜市| 德昌县| 吴忠市| 和田市| 文化| 广平县| 丽水市| 玉屏| 新竹市| 英德市| 光山县| 云和县| 大名县| 宜君县| 轮台县| 东兴市| 诏安县| 寻甸| 浏阳市|