亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
怀远县| 扎鲁特旗| 合水县| 鞍山市| 山阴县| 香港| 嵊泗县| 运城市| 工布江达县| 鄯善县| 上蔡县| 梨树县| 永昌县| 宜春市| 甘孜县| 左权县| 东阳市| 赤壁市| 化州市| 错那县| 兰州市| 三河市| 游戏| 九龙城区| 浑源县| 沈阳市| 西安市| 新宁县| 永安市| 清水河县| 石嘴山市| 平江县| 四平市| 双流县| 余姚市| 秀山| 巩义市| 鄂托克前旗| 平安县| 渝中区| 武汉市|