中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
丹东市| 桃园市| 禄劝| 自治县| 武穴市| 宜都市| 遂平县| 张家港市| 辽中县| 周至县| 靖西县| 平阴县| 富阳市| 温泉县| 如皋市| 大姚县| 汤原县| 新津县| 门源| 阳谷县| 衡山县| 奇台县| 南涧| 湾仔区| 旬邑县| 图木舒克市| 阿尔山市| 甘南县| 大庆市| 靖江市| 时尚| 长武县| 利津县| 临邑县| 吐鲁番市| 电白县| 依兰县| 赤水市| 驻马店市| 新源县| 曲沃县|