MIME解碼問題 |
尚未結案
|
andy1119
一般會員 發表:32 回覆:35 積分:13 註冊:2003-11-09 發送簡訊給我 |
|
solnone
中階會員 發表:2 回覆:97 積分:69 註冊:2003-05-06 發送簡訊給我 |
|
andy1119
一般會員 發表:32 回覆:35 積分:13 註冊:2003-11-09 發送簡訊給我 |
|
ddy
站務副站長 發表:262 回覆:2105 積分:1169 註冊:2002-07-13 發送簡訊給我 |
此問題站內已有相關討論,請多利用搜尋
請參考:
請問有 Base64 Decode 的 source code 嗎?
http://delphi.ktop.com.tw/topic.php?topic_id=22036 MIME 和 BASE64 編碼/解碼程序代碼
http://delphi.ktop.com.tw/topic.php?topic_id=19939 【Delphi】【問題】關於BASE64的解碼(附原始碼)
http://delphi.ktop.com.tw/topic.php?topic_id=27151 【問題】請問Delphi7使用IdPOP3(Indy9)下載郵件後,怎樣處理亂碼(MIME)?
http://delphi.ktop.com.tw/topic.php?topic_id=30401 Delphi 處理"quoted-printable" 或"base64"的函數
http://delphi.ktop.com.tw/topic.php?topic_id=30693
另至 src="http://delphi.ktop.com.tw/loadfile.php?TOPICID=8147403&CC=182217">
|
anderslee
初階會員 發表:2 回覆:32 積分:26 註冊:2002-06-03 發送簡訊給我 |
|
solnone
中階會員 發表:2 回覆:97 積分:69 註冊:2003-05-06 發送簡訊給我 |
indy 對過長的主旨處理有問題!
可以自行寫一個
function DecodeSubject(Header: string): string;
var
StrStart, StrEnd, l: Integer;
pc: PChar;
s: string;
const
HeaderCharSetStr = '=?%s?B?';
begin
Header := DecodeHeader(Header);
s := Format(HeaderCharSetStr, ['BIG5']);
l := Pos(s, UpperCase(Header));
StrStart := l Length(s);
if l <= 0 then begin
s := Format(HeaderCharSetStr, ['SGB2312']);
l := Pos(s, UpperCase(Header));
StrStart := l Length(s);
end;
if l > 0 then begin
StrEnd := Pos('?=', UpperCase(Header));
if StrEnd > 0 then begin
Header[StrEnd] := #0;
pc := @Header[StrStart];
try
Result := DeCoder.DecodeString(pc);
if (Length(Header) > StrEnd 5) then begin
Result := Result DecodeSubject(PChar(@Header[StrEnd 3]));
end;
except
Header[StrEnd] := '?';
Result := Header;
end;
end;
end else
Result := Header;
end;
|
anderslee
初階會員 發表:2 回覆:32 積分:26 註冊:2002-06-03 發送簡訊給我 |
|
Ktop_Robot
站務副站長 發表:0 回覆:3511 積分:0 註冊:2007-04-17 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |