UTF8Encoding 類別(System.Text) - Microsoft Learn
文章推薦指數: 80 %
下列範例會使用UTF8Encoding 物件來編碼Unicode 字元的字串,並將其儲存在位元組陣列中。
Unicode 字串包含兩個字元:Pi (U+03A0) 和Sigma (U+03A3) ,這些字元 ...
跳到主要內容
已不再支援此瀏覽器。
請升級至MicrosoftEdge,以利用最新功能、安全性更新和技術支援。
下載MicrosoftEdge
InternetExplorer和MicrosoftEdge的詳細資訊
目錄
結束焦點模式
語言
閱讀英文
儲存
目錄
閱讀英文
儲存
編輯
Twitter
LinkedIn
Facebook
電子郵件
目錄
UTF8Encoding類別
參考
定義
命名空間:
System.Text
組件:System.Text.Encoding.Extensions.dll
組件:mscorlib.dll
組件:netstandard.dll
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。
Microsoft對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
代表Unicode字元的UTF-8編碼方式。
本文內容
publicrefclassUTF8Encoding:System::Text::Encoding
publicclassUTF8Encoding:System.Text.Encoding
[System.Serializable]
publicclassUTF8Encoding:System.Text.Encoding
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
publicclassUTF8Encoding:System.Text.Encoding
typeUTF8Encoding=class
inheritEncoding
[
Unicode字串包含兩個字元:Pi(U+03A0)和Sigma(U+03A3),這些字元超出ASCII字元範圍。
當編碼的位元組陣列解碼回字串時,Pi和Sigma字元仍然存在。
usingnamespaceSystem;
usingnamespaceSystem::Text;
//usingnamespaceSystem::Collections;
intmain()
{
//CreateaUTF-8encoding.
UTF8Encoding^utf8=gcnewUTF8Encoding;
//AUnicodestringwithtwocharactersoutsidean8-bitcoderange.
String^unicodeString=L"ThisUnicodestringhas2characters"+
L"outsidetheASCIIrange:\n"+
L"Pi(\u03a0),andSigma(\u03a3).";
Console::WriteLine("Originalstring:");
Console::WriteLine(unicodeString);
//Encodethestring.
array
GetByteCount(ReadOnlySpan
(繼承來源Encoding)
GetByteCount(String)
計算將指定String中的字元編碼所產生的位元組數目。
GetByteCount(String,Int32,Int32)
在衍生類別中覆寫時,計算藉由從指定的字串編碼一組字元所產生的位元組數。
(繼承來源Encoding)
GetBytes(Char*,Int32,Byte*,Int32)
將起始於指定字元指標的一組字元編碼成位元組序列;儲存該位元組序列時,係以指定的位元組指標為起始點。
GetBytes(Char*,Int32,Byte*,Int32)
在衍生類別中覆寫時,從指定字元指標開始將一組字元編碼成位元組序列(會從指定的位元組指標開始存放這些位元組)。
(繼承來源Encoding)
GetBytes(Char[])
在衍生類別中覆寫時,將指定字元陣列中的所有字元編碼成位元組序列。
(繼承來源Encoding)
GetBytes(Char[],Int32,Int32)
在衍生類別中覆寫時,將指定字元陣列中的一組字元編碼成位元組序列。
(繼承來源Encoding)
GetBytes(Char[],Int32,Int32,Byte[],Int32)
將指定字元陣列中的一組字元編碼成指定的位元組陣列。
GetBytes(ReadOnlySpan
GetBytes(ReadOnlySpan
(繼承來源Encoding)
GetBytes(String)
將指定String物件中的字元編碼成位元組序列。
GetBytes(String)
在衍生類別中覆寫時,將指定字串中的所有字元編碼成位元組序列。
(繼承來源Encoding)
GetBytes(String,Int32,Int32)
在衍生類別中覆寫時,從指定字串中指定的index開始,將count指定的字元數編碼到位元組陣列。
(繼承來源Encoding)
GetBytes(String,Int32,Int32,Byte[],Int32)
將指定String中的一組字元編碼成指定的位元組陣列。
GetCharCount(Byte*,Int32)
計算將起始於指定位元組指標的位元組序列解碼所產生的字元數。
GetCharCount(Byte*,Int32)
在衍生類別中覆寫時,計算從指定的位元組指標開始,解碼位元組序列所產生的字元數目。
(繼承來源Encoding)
GetCharCount(Byte[])
在衍生類別中覆寫時,計算解碼指定位元組陣列中所有位元組所產生的字元數目。
(繼承來源Encoding)
GetCharCount(Byte[],Int32,Int32)
計算將指定位元組陣列中的位元組序列解碼所產生的字元數。
GetCharCount(ReadOnlySpan
GetCharCount(ReadOnlySpan
(繼承來源Encoding)
GetChars(Byte*,Int32,Char*,Int32)
將起始於指定位元組指標的位元組序列解碼成一組字元;儲存該組字元時,係以指定的字元指標為起始點。
GetChars(Byte*,Int32,Char*,Int32)
在衍生類別中覆寫時,從指定位元組指標開始將位元組序列解碼成一組字元(會從指定的字元指標開始存放這些字元)。
(繼承來源Encoding)
GetChars(Byte[])
在衍生類別中覆寫時,將指定位元組陣列中的所有位元組解碼成一組字元。
(繼承來源Encoding)
GetChars(Byte[],Int32,Int32)
在衍生類別中覆寫時,將指定位元組陣列中的位元組序列解碼成一組字元。
(繼承來源Encoding)
GetChars(Byte[],Int32,Int32,Char[],Int32)
將指定位元組陣列中的位元組序列解碼成指定的字元陣列。
GetChars(ReadOnlySpan
GetChars(ReadOnlySpan
(繼承來源Encoding)
GetDecoder()
取得可以將以UTF-8編碼的位元組序列轉換成Unicode字元序列的解碼器。
GetEncoder()
取得可以將Unicode字元序列轉換成以UTF-8編碼的位元組序列的編碼器。
GetHashCode()
傳回目前執行個體的雜湊碼。
GetMaxByteCount(Int32)
計算將指定數目的字元編碼所產生的最大位元組數目。
GetMaxCharCount(Int32)
計算將指定數目的位元組解碼所產生的最大字元數。
GetPreamble()
如果設定UTF8Encoding編碼物件提供編碼方式,則會傳回以UTF-8格式編碼的Unicode位元組順序標記。
GetString(Byte*,Int32)
在衍生類別中覆寫時,將指定位址開頭之指定數目的位元組解碼為字串。
(繼承來源Encoding)
GetString(Byte[])
在衍生類別中覆寫時,將指定位元組陣列中的所有位元組解碼成字串。
(繼承來源Encoding)
GetString(Byte[],Int32,Int32)
將位元組陣列中的某一段位元組範圍解碼成字串。
GetString(Byte[],Int32,Int32)
在衍生類別中覆寫時,將指定位元組陣列中的位元組序列解碼成字串。
(繼承來源Encoding)
GetString(ReadOnlySpan
(繼承來源Encoding)
GetType()
取得目前執行個體的Type。
(繼承來源Object)
IsAlwaysNormalized()
取得值,指出目前的編碼方式是否永遠都是使用預設的正規化表單進行正規化。
(繼承來源Encoding)
IsAlwaysNormalized(NormalizationForm)
在衍生類別中覆寫時取得值,指出目前的編碼方式是否永遠都是使用指定的正規化表單進行正規化。
(繼承來源Encoding)
MemberwiseClone()
建立目前Object的淺層複製。
(繼承來源Object)
ToString()
傳回代表目前物件的字串。
(繼承來源Object)
擴充方法
GetBytes(Encoding,ReadOnlySequence
GetBytes(Encoding,ReadOnlySequence
GetBytes(Encoding,ReadOnlySequence
GetBytes(Encoding,ReadOnlySpan
GetChars(Encoding,ReadOnlySequence
GetChars(Encoding,ReadOnlySequence
GetChars(Encoding,ReadOnlySpan
GetString(Encoding,ReadOnlySequence
適用於
另請參閱
Decoder
Encoder
瞭解編碼
本文內容
延伸文章資訊
- 1UTF-8 encoder/decoder
About this tool. This tool uses utf8.js to UTF-8-encode any string you enter in the 'decoded' fie...
- 2如何把純文字檔案轉換成UTF-8格式:使用Notepad++ / How ...
這就是Notepad++的畫面了。 Big5純文字範例檔案下載/ Download Big5 Encoding Text File. image. 有時候我們拿到的檔案並不是用UTF8編碼 ...
- 3UTF-8 - Wikipedia
UTF-8 is a variable-width character encoding used for electronic communication. Defined by the Un...
- 4Day27 Python 基礎- 字符轉編碼操作 - iT 邦幫忙
coding:utf-8 -*- import sys print(sys.getdefaultencoding()) # 打印出目前系統字符編碼s = '你好' s_to_unicode = ...
- 5HTML Unicode (UTF-8) Reference - W3Schools
Unicode is a character set. UTF-8 is encoding. Unicode is a list of characters with unique decima...