C \ # 에서 인 코딩 된 문자열 을 다른 인 코딩 으로 변환 하 는 방법 입 니 다.
다음 함수
TransferStr
는 디 코딩 을 완성 하고 Test
함 수 를 호출 하여 시범 을 보 여 줍 니 다.private void Test()
{
Encoding strUtf8 = Encoding.UTF8;
Encoding strGb2312 = Encoding.GetEncoding("GB2312");
string str = " ";// Suppose str is a GB2312 string
str = TransferStr(str, strGb2312, strUtf8);
Console.WriteLine(str);
}
private string TransferStr(string str, Encoding originalEncode, Encoding targetEncode)
{
try
{
byte[] unicodeBytes = originalEncode.GetBytes(str);
byte[] asciiBytes = Encoding.Convert(originalEncode, targetEncode, unicodeBytes);
char[] asciiChars = new char[targetEncode.GetCharCount(asciiBytes, 0, asciiBytes.Length)];
targetEncode.GetChars(asciiBytes, 0, asciiBytes.Length, asciiChars, 0);
string result = new string(asciiChars);
return result;
}
catch
{
Console.WriteLine("There is an exception.");
return "";
}
}
마지막 출력 은 더 이상 난 장 판이 아니다.
또한 코드 에
StreamReader
로 처리 하면 HttpWebResponse
이 버 전의 구조 함 수 를 사용 하 는 것 이 좋 습 니 다.StreamReader(Stream stream, Encoding encoding);
사용 예 는 다음 과 같 습 니 다.
//response's type is HttpWebResponse
StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding(response.CharacterSet));
이렇게 하면 어떤 유형의 인 코딩 을 되 돌려 주 든 자신의 인 코딩 유형 에 따라 정확하게 전환 할 수 있다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정렬이 원본 비교를 지원하지 않는 대상너는 같은 유형의 대상을 정렬하고 싶지만, 그들은 원생의 비교 조작을 지원하지 않는다. 내장된sorted () 함수에는 키워드 매개 변수 키가 있습니다.callable 대상을 전송할 수 있습니다. 이callable ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.