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

溫馨提示×

求quoted-printable編碼的解碼的java程序

小億
122
2023-12-20 17:42:18
欄目: 編程語言

以下是一個簡單的Java程序,用于對quoted-printable編碼進行解碼:

import java.io.UnsupportedEncodingException;
import java.nio.charset.StandardCharsets;
public class QuotedPrintableDecoder {

????public?static?void?main(String[]?args)?{

????????String?encodedString?=?“Hello=20World=21”;

????????String?decodedString?=?decodeQuotedPrintable(encodedString);

????????System.out.println(decodedString);

????}

????public?static?String?decodeQuotedPrintable(String?encodedString)?{

????????try?{

????????????byte[]?encodedBytes?=?encodedString.getBytes(StandardCharsets.US_ASCII);

????????????StringBuilder?decodedString?=?new?StringBuilder();

????????????int?i?=?0;

????????????while?(i?<?encodedBytes.length)?{

????????????????if?(encodedBytes[i]?==?'=')?{

????????????????????int?hex1?=?Character.digit(encodedBytes[i?+?1],?16);

????????????????????int?hex2?=?Character.digit(encodedBytes[i?+?2],?16);

????????????????????if?(hex1?!=?-1?&&?hex2?!=?-1)?{

????????????????????????byte?decodedByte?=?(byte)?((hex1?<<?4)?+?hex2);

????????????????????????decodedString.append((char)?decodedByte);

????????????????????????i?+=?3;

????????????????????}?else?{

????????????????????????decodedString.append('=');

????????????????????????i++;

????????????????????}

????????????????}?else?{

????????????????????decodedString.append((char)?encodedBytes[i]);

????????????????????i++;

????????????????}

????????????}

????????????return?decodedString.toString();

????????}?catch?(UnsupportedEncodingException?e)?{

????????????e.printStackTrace();

????????????return?null;

????????}

????} }

在上面的代碼中,我們定義了一個decodeQuotedPrintable方法,它接受一個quoted-printable編碼的字符串作為輸入,并返回解碼后的字符串。在該方法中,我們首先將輸入字符串轉換為字節數組,然后逐個解碼字節,并將解碼后的字符追加到StringBuilder對象中。如果遇到=HEX形式的編碼,我們將其轉換為對應的字節,并將該字節添加到解碼字符串中。最后,我們將StringBuilder對象轉換為字符串,并返回解碼結果。
main方法中,我們提供了一個encodedString示例,并調用decodeQuotedPrintable方法進行解碼。解碼結果將被打印到控制臺上。

0
谷城县| 清丰县| 九台市| 德令哈市| 深泽县| 通河县| 泽州县| 吴堡县| 章丘市| 克东县| 西昌市| 黄骅市| 昌都县| 建始县| 绥滨县| 三亚市| 通山县| 吉隆县| 特克斯县| 泰安市| 越西县| 麦盖提县| 满城县| 聊城市| 拉萨市| 灵寿县| 西城区| 乾安县| 铁岭县| 海门市| 赤城县| 绥江县| 新乡县| 连南| 巴青县| 阳谷县| 左权县| 扶风县| 舞阳县| 任丘市| 长葛市|