Encoding.GetChars Metode

Definisi

Ketika ditimpa di kelas turunan, dekode urutan byte menjadi sekumpulan karakter.

Overload

GetChars(Byte[], Int32, Int32, Char[], Int32)

Saat ditimpa dalam kelas turunan, dekode urutan byte dari array byte yang ditentukan ke dalam array karakter yang ditentukan.

GetChars(Byte*, Int32, Char*, Int32)

Saat ditimpa dalam kelas turunan, dekode urutan byte yang dimulai pada penunjuk byte yang ditentukan ke dalam sekumpulan karakter yang disimpan mulai dari penunjuk karakter yang ditentukan.

GetChars(Byte[], Int32, Int32)

Saat ditimpa dalam kelas turunan, dekode urutan byte dari array byte yang ditentukan menjadi sekumpulan karakter.

GetChars(ReadOnlySpan<Byte>, Span<Char>)

Saat ditimpa dalam kelas turunan, dekode semua byte dalam rentang byte baca-saja yang ditentukan menjadi rentang karakter.

GetChars(Byte[])

Saat ditimpa di kelas turunan, dekode semua byte dalam array byte yang ditentukan menjadi sekumpulan karakter.

GetChars(Byte[], Int32, Int32, Char[], Int32)

Sumber:
Encoding.cs
Sumber:
Encoding.cs
Sumber:
Encoding.cs

Saat ditimpa dalam kelas turunan, dekode urutan byte dari array byte yang ditentukan ke dalam array karakter yang ditentukan.

public:
 abstract int GetChars(cli::array <System::Byte> ^ bytes, int byteIndex, int byteCount, cli::array <char> ^ chars, int charIndex);
public abstract int GetChars (byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex);
abstract member GetChars : byte[] * int * int * char[] * int -> int
Public MustOverride Function GetChars (bytes As Byte(), byteIndex As Integer, byteCount As Integer, chars As Char(), charIndex As Integer) As Integer

Parameter

bytes
Byte[]

Array byte yang berisi urutan byte yang akan didekodekan.

byteIndex
Int32

Indeks byte pertama yang didekodekan.

byteCount
Int32

Jumlah byte yang akan didekodekan.

chars
Char[]

Array karakter untuk berisi sekumpulan karakter yang dihasilkan.

charIndex
Int32

Indeks untuk mulai menulis sekumpulan karakter yang dihasilkan.

Mengembalikan

Jumlah karakter aktual yang ditulis ke dalam chars.

Pengecualian

bytesadalah null.

-atau-

charsadalah null.

byteIndex atau byteCount atau charIndex kurang dari nol.

-atau-

byteindex dan byteCount tidak menunjukkan rentang yang valid dalam bytes.

-atau-

charIndex bukan indeks yang valid di chars.

chars tidak memiliki kapasitas yang cukup dari charIndex hingga akhir array untuk mengakomodasi karakter yang dihasilkan.

Fallback terjadi (untuk informasi selengkapnya, lihat Pengodean Karakter di .NET)

-dan-

DecoderFallback diatur ke DecoderExceptionFallback.

Contoh

Contoh berikut mengonversi string dari satu pengodean ke pengodean lainnya.

using namespace System;
using namespace System::Text;

int main()
{
   String^ unicodeString = "This string contains the unicode character Pi (\u03a0)";
   
   // Create two different encodings.
   Encoding^ ascii = Encoding::ASCII;
   Encoding^ unicode = Encoding::Unicode;
   
   // Convert the string into a byte array.
   array<Byte>^unicodeBytes = unicode->GetBytes( unicodeString );
   
   // Perform the conversion from one encoding to the other.
   array<Byte>^asciiBytes = Encoding::Convert( unicode, ascii, unicodeBytes );
   
   // Convert the new Byte into[] a char and[] then into a string.
   array<Char>^asciiChars = gcnew array<Char>(ascii->GetCharCount( asciiBytes, 0, asciiBytes->Length ));
   ascii->GetChars( asciiBytes, 0, asciiBytes->Length, asciiChars, 0 );
   String^ asciiString = gcnew String( asciiChars );
   
   // Display the strings created before and after the conversion.
   Console::WriteLine( "Original String*: {0}", unicodeString );
   Console::WriteLine( "Ascii converted String*: {0}", asciiString );
}
// The example displays the following output:
//    Original string: This string contains the unicode character Pi (Π)
//    Ascii converted string: This string contains the unicode character Pi (?)
using System;
using System.Text;

class Example
{
   static void Main()
   {
      string unicodeString = "This string contains the unicode character Pi (\u03a0)";

      // Create two different encodings.
      Encoding ascii = Encoding.ASCII;
      Encoding unicode = Encoding.Unicode;

      // Convert the string into a byte array.
      byte[] unicodeBytes = unicode.GetBytes(unicodeString);

      // Perform the conversion from one encoding to the other.
      byte[] asciiBytes = Encoding.Convert(unicode, ascii, unicodeBytes);
         
      // Convert the new byte[] into a char[] and then into a string.
      char[] asciiChars = new char[ascii.GetCharCount(asciiBytes, 0, asciiBytes.Length)];
      ascii.GetChars(asciiBytes, 0, asciiBytes.Length, asciiChars, 0);
      string asciiString = new string(asciiChars);

      // Display the strings created before and after the conversion.
      Console.WriteLine("Original string: {0}", unicodeString);
      Console.WriteLine("Ascii converted string: {0}", asciiString);
   }
}
// The example displays the following output:
//    Original string: This string contains the unicode character Pi (Π)
//    Ascii converted string: This string contains the unicode character Pi (?)
Imports System.Text

Class Example
   Shared Sub Main()
      Dim unicodeString As String = "This string contains the unicode character Pi (" & ChrW(&H03A0) & ")"

      ' Create two different encodings.
      Dim ascii As Encoding = Encoding.ASCII
      Dim unicode As Encoding = Encoding.Unicode

      ' Convert the string into a byte array.
      Dim unicodeBytes As Byte() = unicode.GetBytes(unicodeString)

      ' Perform the conversion from one encoding to the other.
      Dim asciiBytes As Byte() = Encoding.Convert(unicode, ascii, unicodeBytes)

      ' Convert the new byte array into a char array and then into a string.
      Dim asciiChars(ascii.GetCharCount(asciiBytes, 0, asciiBytes.Length)-1) As Char
      ascii.GetChars(asciiBytes, 0, asciiBytes.Length, asciiChars, 0)
      Dim asciiString As New String(asciiChars)

      ' Display the strings created before and after the conversion.
      Console.WriteLine("Original string: {0}", unicodeString)
      Console.WriteLine("Ascii converted string: {0}", asciiString)
   End Sub
End Class
' The example displays the following output:
'    Original string: This string contains the unicode character Pi (Π)
'    Ascii converted string: This string contains the unicode character Pi (?)

Contoh berikut mengodekan string ke dalam array byte, lalu mendekode rentang byte menjadi array karakter.

using namespace System;
using namespace System::Text;
void PrintCountsAndChars( array<Byte>^bytes, int index, int count, Encoding^ enc );
int main()
{
   
   // Create two instances of UTF32Encoding: one with little-endian byte order and one with big-endian byte order.
   Encoding^ u32LE = Encoding::GetEncoding( "utf-32" );
   Encoding^ u32BE = Encoding::GetEncoding( "utf-32BE" );
   
   // Use a string containing the following characters:
   //    Latin Small Letter Z (U+007A)
   //    Latin Small Letter A (U+0061)
   //    Combining Breve (U+0306)
   //    Latin Small Letter AE With Acute (U+01FD)
   //    Greek Small Letter Beta (U+03B2)
   String^ myStr = "za\u0306\u01FD\u03B2";
   
   // Encode the string using the big-endian byte order.
   array<Byte>^barrBE = gcnew array<Byte>(u32BE->GetByteCount( myStr ));
   u32BE->GetBytes( myStr, 0, myStr->Length, barrBE, 0 );
   
   // Encode the string using the little-endian byte order.
   array<Byte>^barrLE = gcnew array<Byte>(u32LE->GetByteCount( myStr ));
   u32LE->GetBytes( myStr, 0, myStr->Length, barrLE, 0 );
   
   // Get the char counts, decode eight bytes starting at index 0,
   // and print out the counts and the resulting bytes.
   Console::Write( "BE array with BE encoding : " );
   PrintCountsAndChars( barrBE, 0, 8, u32BE );
   Console::Write( "LE array with LE encoding : " );
   PrintCountsAndChars( barrLE, 0, 8, u32LE );
}

void PrintCountsAndChars( array<Byte>^bytes, int index, int count, Encoding^ enc )
{
   
   // Display the name of the encoding used.
   Console::Write( "{0,-25} :", enc );
   
   // Display the exact character count.
   int iCC = enc->GetCharCount( bytes, index, count );
   Console::Write( " {0,-3}", iCC );
   
   // Display the maximum character count.
   int iMCC = enc->GetMaxCharCount( count );
   Console::Write( " {0,-3} :", iMCC );
   
   // Decode the bytes and display the characters.
   array<Char>^chars = enc->GetChars( bytes, index, count );
   
   // The following is an alternative way to decode the bytes:
   // Char[] chars = new Char[iCC];
   // enc->GetChars( bytes, index, count, chars, 0 );
   Console::WriteLine( chars );
}

/* 
This code produces the following output.  The question marks take the place of characters that cannot be displayed at the console.

BE array with BE encoding : System.Text.UTF32Encoding : 2   6   :za
LE array with LE encoding : System.Text.UTF32Encoding : 2   6   :za

*/
using System;
using System.Text;

public class SamplesEncoding  {

   public static void Main()  {

      // Create two instances of UTF32Encoding: one with little-endian byte order and one with big-endian byte order.
      Encoding u32LE = Encoding.GetEncoding( "utf-32" );
      Encoding u32BE = Encoding.GetEncoding( "utf-32BE" );

      // Use a string containing the following characters:
      //    Latin Small Letter Z (U+007A)
      //    Latin Small Letter A (U+0061)
      //    Combining Breve (U+0306)
      //    Latin Small Letter AE With Acute (U+01FD)
      //    Greek Small Letter Beta (U+03B2)
      String myStr = "za\u0306\u01FD\u03B2";

      // Encode the string using the big-endian byte order.
      byte[] barrBE = new byte[u32BE.GetByteCount( myStr )];
      u32BE.GetBytes( myStr, 0, myStr.Length, barrBE, 0 );

      // Encode the string using the little-endian byte order.
      byte[] barrLE = new byte[u32LE.GetByteCount( myStr )];
      u32LE.GetBytes( myStr, 0, myStr.Length, barrLE, 0 );

      // Get the char counts, decode eight bytes starting at index 0,
      // and print out the counts and the resulting bytes.
      Console.Write( "BE array with BE encoding : " );
      PrintCountsAndChars( barrBE, 0, 8, u32BE );
      Console.Write( "LE array with LE encoding : " );
      PrintCountsAndChars( barrLE, 0, 8, u32LE );
   }

   public static void PrintCountsAndChars( byte[] bytes, int index, int count, Encoding enc )  {

      // Display the name of the encoding used.
      Console.Write( "{0,-25} :", enc.ToString() );

      // Display the exact character count.
      int iCC  = enc.GetCharCount( bytes, index, count );
      Console.Write( " {0,-3}", iCC );

      // Display the maximum character count.
      int iMCC = enc.GetMaxCharCount( count );
      Console.Write( " {0,-3} :", iMCC );

      // Decode the bytes and display the characters.
      char[] chars = enc.GetChars( bytes, index, count );

      // The following is an alternative way to decode the bytes:
      // char[] chars = new char[iCC];
      // enc.GetChars( bytes, index, count, chars, 0 );

      Console.WriteLine( chars );
   }
}


/* 
This code produces the following output.  The question marks take the place of characters that cannot be displayed at the console.

BE array with BE encoding : System.Text.UTF32Encoding : 2   6   :za
LE array with LE encoding : System.Text.UTF32Encoding : 2   6   :za

*/
Imports System.Text

Public Class SamplesEncoding   

   Public Shared Sub Main()

      ' Create two instances of UTF32Encoding: one with little-endian byte order and one with big-endian byte order.
      Dim u32LE As Encoding = Encoding.GetEncoding("utf-32")
      Dim u32BE As Encoding = Encoding.GetEncoding("utf-32BE")

      ' Use a string containing the following characters:
      '    Latin Small Letter Z (U+007A)
      '    Latin Small Letter A (U+0061)
      '    Combining Breve (U+0306)
      '    Latin Small Letter AE With Acute (U+01FD)
      '    Greek Small Letter Beta (U+03B2)
      Dim myStr As String = "za" & ChrW(&H0306) & ChrW(&H01FD) & ChrW(&H03B2)

      ' Encode the string using the big-endian byte order.
      ' NOTE: In VB.NET, arrays contain one extra element by default.
      '       The following line creates barrBE with the exact number of elements required.
      Dim barrBE(u32BE.GetByteCount(myStr) - 1) As Byte
      u32BE.GetBytes(myStr, 0, myStr.Length, barrBE, 0)

      ' Encode the string using the little-endian byte order.
      ' NOTE: In VB.NET, arrays contain one extra element by default.
      '       The following line creates barrLE with the exact number of elements required.
      Dim barrLE(u32LE.GetByteCount(myStr) - 1) As Byte
      u32LE.GetBytes(myStr, 0, myStr.Length, barrLE, 0)

      ' Get the char counts, decode eight bytes starting at index 0,
      ' and print out the counts and the resulting bytes.
      Console.Write("BE array with BE encoding : ")
      PrintCountsAndChars(barrBE, 0, 8, u32BE)
      Console.Write("LE array with LE encoding : ")
      PrintCountsAndChars(barrLE, 0, 8, u32LE)

   End Sub


   Public Shared Sub PrintCountsAndChars(bytes() As Byte, index As Integer, count As Integer, enc As Encoding)

      ' Display the name of the encoding used.
      Console.Write("{0,-25} :", enc.ToString())

      ' Display the exact character count.
      Dim iCC As Integer = enc.GetCharCount(bytes, index, count)
      Console.Write(" {0,-3}", iCC)

      ' Display the maximum character count.
      Dim iMCC As Integer = enc.GetMaxCharCount(count)
      Console.Write(" {0,-3} :", iMCC)

      ' Decode the bytes.
      Dim chars As Char() = enc.GetChars(bytes, index, count)

      ' The following is an alternative way to decode the bytes:
      ' NOTE: In VB.NET, arrays contain one extra element by default.
      '       The following line creates the array with the exact number of elements required.
      ' Dim chars(iCC - 1) As Char
      ' enc.GetChars( bytes, index, count, chars, 0 )

      ' Display the characters.
      Console.WriteLine(chars)

   End Sub

End Class


'This code produces the following output.  The question marks take the place of characters that cannot be displayed at the console.
'
'BE array with BE encoding : System.Text.UTF32Encoding : 2   6   :za
'LE array with LE encoding : System.Text.UTF32Encoding : 2   6   :za

Keterangan

Untuk menghitung ukuran array yang tepat yang diperlukan oleh GetChars untuk menyimpan karakter yang dihasilkan, Anda harus menggunakan metode .GetCharCount Untuk menghitung ukuran array maksimum, gunakan GetMaxCharCount metode . Metode ini GetCharCount umumnya memungkinkan alokasi memori yang lebih sedikit, sementara metode umumnya GetMaxCharCount dijalankan lebih cepat.

GetChars(Byte[], Int32, Int32, Char[], Int32) mendapatkan karakter dari urutan byte input. Encoding.GetChars berbeda dari Decoder.GetChars karena Encoding mengharapkan konversi diskrit, sementara Decoder dirancang untuk beberapa pass pada satu aliran input.

Jika data yang akan dikonversi hanya tersedia dalam blok berurutan (seperti data yang dibaca dari aliran) atau jika jumlah data sangat besar sehingga perlu dibagi menjadi blok yang lebih kecil, Anda harus menggunakan Decoder atau Encoder yang disediakan oleh GetDecoder metode atau GetEncoder metode, masing-masing, dari kelas turunan.

Catatan

Metode ini dimaksudkan untuk beroperasi pada karakter Unicode, bukan pada data biner arbitrer, seperti array byte. Jika Anda perlu mengodekan data biner arbitrer ke dalam teks, Anda harus menggunakan protokol seperti uuencode, yang diimplementasikan oleh metode seperti Convert.ToBase64CharArray.

Metode ini GetCharCount menentukan berapa banyak karakter yang menghasilkan pendekodean urutan byte, dan GetChars metode melakukan pendekodean aktual. Metode ini Encoding.GetChars mengharapkan konversi diskrit, berbeda dengan Decoder.GetChars metode , yang menangani beberapa pass pada satu aliran input.

Beberapa versi GetCharCount dan GetChars didukung. Berikut ini adalah beberapa pertimbangan pemrograman untuk penggunaan metode ini:

  • Aplikasi Anda mungkin perlu mendekode beberapa byte input dari halaman kode dan memproses byte menggunakan beberapa panggilan. Dalam hal ini, Anda mungkin perlu mempertahankan status antar panggilan, karena urutan byte dapat terganggu ketika diproses dalam batch. (Misalnya, bagian dari urutan shift ISO-2022 dapat mengakhiri satu GetChars panggilan dan melanjutkan di awal panggilan berikutnya GetChars . Encoding.GetChars akan memanggil fallback untuk urutan yang tidak lengkap, tetapi Decoder akan mengingat urutan tersebut untuk panggilan berikutnya.)

  • Jika aplikasi Anda menangani output string, GetString metode disarankan. Karena metode ini harus memeriksa panjang string dan mengalokasikan buffer, metode ini sedikit lebih lambat, tetapi jenis yang dihasilkan String lebih disukai.

  • Versi byte GetChars(Byte*, Int32, Char*, Int32) memungkinkan beberapa teknik cepat, terutama dengan beberapa panggilan ke buffer besar. Namun, perlu diingat bahwa versi metode ini terkadang tidak aman, karena pointer diperlukan.

  • Jika aplikasi Anda harus mengonversi sejumlah besar data, aplikasi harus menggunakan kembali buffer output. Dalam hal ini, GetChars(Byte[], Int32, Int32, Char[], Int32) versi yang mendukung buffer karakter output adalah pilihan terbaik.

  • Pertimbangkan untuk menggunakan metode alih-alih Decoder.ConvertGetCharCount. Metode konversi mengonversi data sebanyak mungkin dan memberikan pengecualian jika buffer output terlalu kecil. Untuk pendekodean aliran berkelanjutan, metode ini sering menjadi pilihan terbaik.

Lihat juga

Berlaku untuk

GetChars(Byte*, Int32, Char*, Int32)

Sumber:
Encoding.cs
Sumber:
Encoding.cs
Sumber:
Encoding.cs

Penting

API ini bukan kompatibel CLS.

Saat ditimpa di kelas turunan, dekode urutan byte dimulai pada penunjuk byte yang ditentukan ke dalam sekumpulan karakter yang disimpan mulai dari penunjuk karakter yang ditentukan.

public:
 virtual int GetChars(System::Byte* bytes, int byteCount, char* chars, int charCount);
[System.CLSCompliant(false)]
[System.Security.SecurityCritical]
public virtual int GetChars (byte* bytes, int byteCount, char* chars, int charCount);
[System.CLSCompliant(false)]
public virtual int GetChars (byte* bytes, int byteCount, char* chars, int charCount);
[System.CLSCompliant(false)]
[System.Runtime.InteropServices.ComVisible(false)]
public virtual int GetChars (byte* bytes, int byteCount, char* chars, int charCount);
[System.CLSCompliant(false)]
[System.Security.SecurityCritical]
[System.Runtime.InteropServices.ComVisible(false)]
public virtual int GetChars (byte* bytes, int byteCount, char* chars, int charCount);
[<System.CLSCompliant(false)>]
[<System.Security.SecurityCritical>]
abstract member GetChars : nativeptr<byte> * int * nativeptr<char> * int -> int
override this.GetChars : nativeptr<byte> * int * nativeptr<char> * int -> int
[<System.CLSCompliant(false)>]
abstract member GetChars : nativeptr<byte> * int * nativeptr<char> * int -> int
override this.GetChars : nativeptr<byte> * int * nativeptr<char> * int -> int
[<System.CLSCompliant(false)>]
[<System.Runtime.InteropServices.ComVisible(false)>]
abstract member GetChars : nativeptr<byte> * int * nativeptr<char> * int -> int
override this.GetChars : nativeptr<byte> * int * nativeptr<char> * int -> int
[<System.CLSCompliant(false)>]
[<System.Security.SecurityCritical>]
[<System.Runtime.InteropServices.ComVisible(false)>]
abstract member GetChars : nativeptr<byte> * int * nativeptr<char> * int -> int
override this.GetChars : nativeptr<byte> * int * nativeptr<char> * int -> int

Parameter

bytes
Byte*

Penunjuk ke byte pertama yang didekodekan.

byteCount
Int32

Jumlah byte yang akan didekodekan.

chars
Char*

Penunjuk ke lokasi untuk mulai menulis sekumpulan karakter yang dihasilkan.

charCount
Int32

Jumlah maksimum karakter yang akan ditulis.

Mengembalikan

Jumlah karakter aktual yang ditulis di lokasi yang ditunjukkan oleh chars parameter .

Atribut

Pengecualian

bytesadalah null.

-atau-

charsadalah null.

byteCount atau charCount kurang dari nol.

charCount kurang dari jumlah karakter yang dihasilkan.

Fallback terjadi (untuk informasi selengkapnya, lihat Pengodean Karakter di .NET)

-dan-

DecoderFallback diatur ke DecoderExceptionFallback.

Keterangan

Untuk menghitung ukuran array yang tepat yang GetChars diperlukan untuk menyimpan karakter yang dihasilkan, Anda harus menggunakan metode .GetCharCount Untuk menghitung ukuran array maksimum, gunakan GetMaxCharCount metode . Metode ini GetCharCount umumnya memungkinkan alokasi memori yang lebih sedikit, sementara metode umumnya GetMaxCharCount dijalankan lebih cepat.

Encoding.GetChars mendapatkan karakter dari urutan byte input. Encoding.GetChars berbeda dari Decoder.GetChars karena Encoding mengharapkan konversi diskrit, sementara Decoder dirancang untuk beberapa pass pada satu aliran input.

Jika data yang akan dikonversi hanya tersedia dalam blok berurutan (seperti data yang dibaca dari aliran) atau jika jumlah data sangat besar sehingga perlu dibagi menjadi blok yang lebih kecil, Anda harus menggunakan Decoder atau Encoder objek yang disediakan oleh GetDecoder atau GetEncoder metode , masing-masing, dari kelas turunan.

Catatan

Metode ini dimaksudkan untuk beroperasi pada karakter Unicode, bukan pada data biner arbitrer, seperti array byte. Jika Anda perlu mengodekan data biner arbitrer ke dalam teks, Anda harus menggunakan protokol seperti uuencode, yang diimplementasikan oleh metode seperti Convert.ToBase64CharArray.

Metode ini GetCharCount menentukan berapa banyak karakter yang menghasilkan pendekodean urutan byte, dan GetChars metode melakukan pendekodean aktual. Metode ini Encoding.GetChars mengharapkan konversi diskrit, berbeda dengan Decoder.GetChars metode , yang menangani beberapa pass pada satu aliran input.

Beberapa versi GetCharCount dan GetChars didukung. Berikut ini adalah beberapa pertimbangan pemrograman untuk penggunaan metode ini:

  • Aplikasi Anda mungkin perlu mendekode beberapa byte input dari halaman kode dan memproses byte menggunakan beberapa panggilan. Dalam hal ini, Anda mungkin perlu mempertahankan status antar panggilan, karena urutan byte dapat terganggu ketika diproses dalam batch. (Misalnya, bagian dari urutan shift ISO-2022 dapat mengakhiri satu GetChars panggilan dan melanjutkan di awal panggilan berikutnya GetChars . Encoding.GetChars akan memanggil fallback untuk urutan yang tidak lengkap, tetapi Decoder akan mengingat urutan tersebut untuk panggilan berikutnya.)

  • Jika aplikasi Anda menangani output string, GetString metode disarankan. Karena metode ini harus memeriksa panjang string dan mengalokasikan buffer, metode ini sedikit lebih lambat, tetapi jenis yang dihasilkan String lebih disukai.

  • Versi byte GetChars(Byte*, Int32, Char*, Int32) memungkinkan beberapa teknik cepat, terutama dengan beberapa panggilan ke buffer besar. Namun, perlu diingat bahwa versi metode ini terkadang tidak aman, karena pointer diperlukan.

  • Jika aplikasi Anda harus mengonversi sejumlah besar data, aplikasi harus menggunakan kembali buffer output. Dalam hal ini, GetChars(Byte[], Int32, Int32, Char[], Int32) versi yang mendukung buffer karakter output adalah pilihan terbaik.

  • Pertimbangkan untuk menggunakan metode alih-alih Decoder.ConvertGetCharCount. Metode konversi mengonversi data sebanyak mungkin dan memberikan pengecualian jika buffer output terlalu kecil. Untuk pendekodean aliran berkelanjutan, metode ini sering menjadi pilihan terbaik.

Lihat juga

Berlaku untuk

GetChars(Byte[], Int32, Int32)

Sumber:
Encoding.cs
Sumber:
Encoding.cs
Sumber:
Encoding.cs

Saat ditimpa di kelas turunan, dekode urutan byte dari array byte yang ditentukan menjadi sekumpulan karakter.

public:
 virtual cli::array <char> ^ GetChars(cli::array <System::Byte> ^ bytes, int index, int count);
public virtual char[] GetChars (byte[] bytes, int index, int count);
abstract member GetChars : byte[] * int * int -> char[]
override this.GetChars : byte[] * int * int -> char[]
Public Overridable Function GetChars (bytes As Byte(), index As Integer, count As Integer) As Char()

Parameter

bytes
Byte[]

Array byte yang berisi urutan byte yang akan didekodekan.

index
Int32

Indeks byte pertama yang didekodekan.

count
Int32

Jumlah byte yang akan didekodekan.

Mengembalikan

Char[]

Array karakter yang berisi hasil pendekodean urutan byte yang ditentukan.

Pengecualian

bytesadalah null.

index atau count kurang dari nol.

-atau-

index dan count jangan menandakan rentang yang valid di bytes.

Fallback terjadi (untuk informasi selengkapnya, lihat Pengodean Karakter di .NET)

-dan-

DecoderFallback diatur ke DecoderExceptionFallback.

Contoh

Contoh berikut mengodekan string ke dalam array byte, lalu mendekode rentang byte menjadi array karakter.

using namespace System;
using namespace System::Text;
void PrintCountsAndChars( array<Byte>^bytes, int index, int count, Encoding^ enc );
int main()
{
   
   // Create two instances of UTF32Encoding: one with little-endian byte order and one with big-endian byte order.
   Encoding^ u32LE = Encoding::GetEncoding( "utf-32" );
   Encoding^ u32BE = Encoding::GetEncoding( "utf-32BE" );
   
   // Use a string containing the following characters:
   //    Latin Small Letter Z (U+007A)
   //    Latin Small Letter A (U+0061)
   //    Combining Breve (U+0306)
   //    Latin Small Letter AE With Acute (U+01FD)
   //    Greek Small Letter Beta (U+03B2)
   String^ myStr = "za\u0306\u01FD\u03B2";
   
   // Encode the string using the big-endian byte order.
   array<Byte>^barrBE = gcnew array<Byte>(u32BE->GetByteCount( myStr ));
   u32BE->GetBytes( myStr, 0, myStr->Length, barrBE, 0 );
   
   // Encode the string using the little-endian byte order.
   array<Byte>^barrLE = gcnew array<Byte>(u32LE->GetByteCount( myStr ));
   u32LE->GetBytes( myStr, 0, myStr->Length, barrLE, 0 );
   
   // Get the char counts, decode eight bytes starting at index 0,
   // and print out the counts and the resulting bytes.
   Console::Write( "BE array with BE encoding : " );
   PrintCountsAndChars( barrBE, 0, 8, u32BE );
   Console::Write( "LE array with LE encoding : " );
   PrintCountsAndChars( barrLE, 0, 8, u32LE );
}

void PrintCountsAndChars( array<Byte>^bytes, int index, int count, Encoding^ enc )
{
   
   // Display the name of the encoding used.
   Console::Write( "{0,-25} :", enc );
   
   // Display the exact character count.
   int iCC = enc->GetCharCount( bytes, index, count );
   Console::Write( " {0,-3}", iCC );
   
   // Display the maximum character count.
   int iMCC = enc->GetMaxCharCount( count );
   Console::Write( " {0,-3} :", iMCC );
   
   // Decode the bytes and display the characters.
   array<Char>^chars = enc->GetChars( bytes, index, count );
   
   // The following is an alternative way to decode the bytes:
   // Char[] chars = new Char[iCC];
   // enc->GetChars( bytes, index, count, chars, 0 );
   Console::WriteLine( chars );
}

/* 
This code produces the following output.  The question marks take the place of characters that cannot be displayed at the console.

BE array with BE encoding : System.Text.UTF32Encoding : 2   6   :za
LE array with LE encoding : System.Text.UTF32Encoding : 2   6   :za

*/
using System;
using System.Text;

public class SamplesEncoding  {

   public static void Main()  {

      // Create two instances of UTF32Encoding: one with little-endian byte order and one with big-endian byte order.
      Encoding u32LE = Encoding.GetEncoding( "utf-32" );
      Encoding u32BE = Encoding.GetEncoding( "utf-32BE" );

      // Use a string containing the following characters:
      //    Latin Small Letter Z (U+007A)
      //    Latin Small Letter A (U+0061)
      //    Combining Breve (U+0306)
      //    Latin Small Letter AE With Acute (U+01FD)
      //    Greek Small Letter Beta (U+03B2)
      String myStr = "za\u0306\u01FD\u03B2";

      // Encode the string using the big-endian byte order.
      byte[] barrBE = new byte[u32BE.GetByteCount( myStr )];
      u32BE.GetBytes( myStr, 0, myStr.Length, barrBE, 0 );

      // Encode the string using the little-endian byte order.
      byte[] barrLE = new byte[u32LE.GetByteCount( myStr )];
      u32LE.GetBytes( myStr, 0, myStr.Length, barrLE, 0 );

      // Get the char counts, decode eight bytes starting at index 0,
      // and print out the counts and the resulting bytes.
      Console.Write( "BE array with BE encoding : " );
      PrintCountsAndChars( barrBE, 0, 8, u32BE );
      Console.Write( "LE array with LE encoding : " );
      PrintCountsAndChars( barrLE, 0, 8, u32LE );
   }

   public static void PrintCountsAndChars( byte[] bytes, int index, int count, Encoding enc )  {

      // Display the name of the encoding used.
      Console.Write( "{0,-25} :", enc.ToString() );

      // Display the exact character count.
      int iCC  = enc.GetCharCount( bytes, index, count );
      Console.Write( " {0,-3}", iCC );

      // Display the maximum character count.
      int iMCC = enc.GetMaxCharCount( count );
      Console.Write( " {0,-3} :", iMCC );

      // Decode the bytes and display the characters.
      char[] chars = enc.GetChars( bytes, index, count );

      // The following is an alternative way to decode the bytes:
      // char[] chars = new char[iCC];
      // enc.GetChars( bytes, index, count, chars, 0 );

      Console.WriteLine( chars );
   }
}


/* 
This code produces the following output.  The question marks take the place of characters that cannot be displayed at the console.

BE array with BE encoding : System.Text.UTF32Encoding : 2   6   :za
LE array with LE encoding : System.Text.UTF32Encoding : 2   6   :za

*/
Imports System.Text

Public Class SamplesEncoding   

   Public Shared Sub Main()

      ' Create two instances of UTF32Encoding: one with little-endian byte order and one with big-endian byte order.
      Dim u32LE As Encoding = Encoding.GetEncoding("utf-32")
      Dim u32BE As Encoding = Encoding.GetEncoding("utf-32BE")

      ' Use a string containing the following characters:
      '    Latin Small Letter Z (U+007A)
      '    Latin Small Letter A (U+0061)
      '    Combining Breve (U+0306)
      '    Latin Small Letter AE With Acute (U+01FD)
      '    Greek Small Letter Beta (U+03B2)
      Dim myStr As String = "za" & ChrW(&H0306) & ChrW(&H01FD) & ChrW(&H03B2)

      ' Encode the string using the big-endian byte order.
      ' NOTE: In VB.NET, arrays contain one extra element by default.
      '       The following line creates barrBE with the exact number of elements required.
      Dim barrBE(u32BE.GetByteCount(myStr) - 1) As Byte
      u32BE.GetBytes(myStr, 0, myStr.Length, barrBE, 0)

      ' Encode the string using the little-endian byte order.
      ' NOTE: In VB.NET, arrays contain one extra element by default.
      '       The following line creates barrLE with the exact number of elements required.
      Dim barrLE(u32LE.GetByteCount(myStr) - 1) As Byte
      u32LE.GetBytes(myStr, 0, myStr.Length, barrLE, 0)

      ' Get the char counts, decode eight bytes starting at index 0,
      ' and print out the counts and the resulting bytes.
      Console.Write("BE array with BE encoding : ")
      PrintCountsAndChars(barrBE, 0, 8, u32BE)
      Console.Write("LE array with LE encoding : ")
      PrintCountsAndChars(barrLE, 0, 8, u32LE)

   End Sub


   Public Shared Sub PrintCountsAndChars(bytes() As Byte, index As Integer, count As Integer, enc As Encoding)

      ' Display the name of the encoding used.
      Console.Write("{0,-25} :", enc.ToString())

      ' Display the exact character count.
      Dim iCC As Integer = enc.GetCharCount(bytes, index, count)
      Console.Write(" {0,-3}", iCC)

      ' Display the maximum character count.
      Dim iMCC As Integer = enc.GetMaxCharCount(count)
      Console.Write(" {0,-3} :", iMCC)

      ' Decode the bytes.
      Dim chars As Char() = enc.GetChars(bytes, index, count)

      ' The following is an alternative way to decode the bytes:
      ' NOTE: In VB.NET, arrays contain one extra element by default.
      '       The following line creates the array with the exact number of elements required.
      ' Dim chars(iCC - 1) As Char
      ' enc.GetChars( bytes, index, count, chars, 0 )

      ' Display the characters.
      Console.WriteLine(chars)

   End Sub

End Class


'This code produces the following output.  The question marks take the place of characters that cannot be displayed at the console.
'
'BE array with BE encoding : System.Text.UTF32Encoding : 2   6   :za
'LE array with LE encoding : System.Text.UTF32Encoding : 2   6   :za

Keterangan

Encoding.GetChars mendapatkan karakter dari urutan byte input. Encoding.GetChars berbeda dari Decoder.GetChars karena Encoding mengharapkan konversi diskrit, sementara Decoder dirancang untuk beberapa pass pada satu aliran input.

Jika data yang akan dikonversi hanya tersedia dalam blok berurutan (seperti data yang dibaca dari aliran) atau jika jumlah data sangat besar sehingga perlu dibagi menjadi blok yang lebih kecil, Anda harus menggunakan Decoder atau Encoder yang disediakan oleh GetDecoder metode atau GetEncoder metode, masing-masing, dari kelas turunan.

Catatan

Metode ini dimaksudkan untuk beroperasi pada karakter Unicode, bukan pada data biner arbitrer, seperti array byte. Jika Anda perlu mengodekan data biner arbitrer ke dalam teks, Anda harus menggunakan protokol seperti uuencode, yang diimplementasikan oleh metode seperti Convert.ToBase64CharArray.

Metode menentukan GetCharCount berapa banyak karakter yang menghasilkan decoding urutan byte, dan GetChars metode melakukan decoding aktual. Metode ini Encoding.GetChars mengharapkan konversi diskrit, berbeda dengan Decoder.GetChars metode , yang menangani beberapa pass pada satu aliran input.

Beberapa versi GetCharCount dan GetChars didukung. Berikut ini adalah beberapa pertimbangan pemrograman untuk penggunaan metode ini:

  • Aplikasi Anda mungkin perlu mendekode beberapa byte input dari halaman kode dan memproses byte menggunakan beberapa panggilan. Dalam hal ini, Anda mungkin perlu mempertahankan status antar panggilan, karena urutan byte dapat terganggu ketika diproses dalam batch. (Misalnya, bagian dari urutan shift ISO-2022 dapat mengakhiri satu GetChars panggilan dan melanjutkan di awal panggilan berikutnya GetChars . Encoding.GetChars akan memanggil fallback untuk urutan yang tidak lengkap, tetapi Decoder akan mengingat urutan tersebut untuk panggilan berikutnya.)

  • Jika aplikasi Anda menangani output string, disarankan untuk menggunakan metode .GetString Karena metode ini harus memeriksa panjang string dan mengalokasikan buffer, metode ini sedikit lebih lambat, tetapi jenis yang String dihasilkan lebih disukai.

  • Versi GetChars(Byte*, Int32, Char*, Int32) byte memungkinkan beberapa teknik cepat, terutama dengan beberapa panggilan ke buffer besar. Namun, perlu diingat bahwa versi metode ini terkadang tidak aman, karena pointer diperlukan.

  • Jika aplikasi Anda harus mengonversi sejumlah besar data, aplikasi harus menggunakan kembali buffer output. Dalam hal ini, GetChars(Byte[], Int32, Int32, Char[], Int32) versi yang mendukung buffer karakter output adalah pilihan terbaik.

  • Pertimbangkan untuk menggunakan metode alih-alih Decoder.ConvertGetCharCount. Metode konversi mengonversi data sebanyak mungkin dan memberikan pengecualian jika buffer output terlalu kecil. Untuk pendekodean aliran berkelanjutan, metode ini sering kali merupakan pilihan terbaik.

Lihat juga

Berlaku untuk

GetChars(ReadOnlySpan<Byte>, Span<Char>)

Sumber:
Encoding.cs
Sumber:
Encoding.cs
Sumber:
Encoding.cs

Saat ditimpa dalam kelas turunan, dekode semua byte dalam rentang byte baca-saja yang ditentukan menjadi rentang karakter.

public:
 virtual int GetChars(ReadOnlySpan<System::Byte> bytes, Span<char> chars);
public virtual int GetChars (ReadOnlySpan<byte> bytes, Span<char> chars);
abstract member GetChars : ReadOnlySpan<byte> * Span<char> -> int
override this.GetChars : ReadOnlySpan<byte> * Span<char> -> int
Public Overridable Function GetChars (bytes As ReadOnlySpan(Of Byte), chars As Span(Of Char)) As Integer

Parameter

bytes
ReadOnlySpan<Byte>

Rentang baca-saja yang berisi urutan byte untuk didekodekan.

chars
Span<Char>

Rentang karakter menerima byte yang didekodekan.

Mengembalikan

Jumlah karakter aktual yang ditulis pada rentang yang ditunjukkan oleh chars parameter .

Keterangan

Encoding.GetChars mendapatkan karakter dari rentang byte input. Encoding.GetChars berbeda dari Decoder.GetChars karena Encoding mengharapkan konversi diskrit, sementara Decoder dirancang untuk beberapa pass pada satu aliran input.

Jika data yang akan dikonversi hanya tersedia dalam blok berurutan (seperti data yang dibaca dari aliran) atau jika jumlah data sangat besar sehingga perlu dibagi menjadi blok yang lebih kecil, Anda harus menggunakan Decoder atau Encoder yang disediakan oleh GetDecoder metode atau GetEncoder metode, masing-masing, dari kelas turunan.

Metode menentukan GetCharCount berapa banyak karakter yang menghasilkan decoding urutan byte, dan GetChars metode melakukan decoding aktual. Metode ini Encoding.GetChars mengharapkan konversi diskrit, berbeda dengan Decoder.GetChars metode , yang menangani beberapa pass pada satu aliran input.

Beberapa versi GetCharCount dan GetChars didukung. Berikut ini adalah beberapa pertimbangan pemrograman untuk penggunaan metode ini:

  • Aplikasi Anda mungkin perlu mendekode beberapa byte input dari halaman kode dan memproses byte menggunakan beberapa panggilan. Dalam hal ini, Anda mungkin perlu mempertahankan status antar panggilan, karena urutan byte dapat terganggu ketika diproses dalam batch. (Misalnya, bagian dari urutan shift ISO-2022 dapat mengakhiri satu GetChars panggilan dan melanjutkan di awal panggilan berikutnya GetChars . Encoding.GetChars akan memanggil fallback untuk urutan yang tidak lengkap, tetapi Decoder akan mengingat urutan tersebut untuk panggilan berikutnya.)

  • Jika aplikasi Anda menangani output string, disarankan untuk menggunakan metode .GetString Karena metode ini harus memeriksa panjang string dan mengalokasikan buffer, metode ini sedikit lebih lambat, tetapi jenis yang String dihasilkan lebih disukai.

  • Versi GetChars(Byte*, Int32, Char*, Int32) byte memungkinkan beberapa teknik cepat, terutama dengan beberapa panggilan ke buffer besar. Namun, perlu diingat bahwa versi metode ini terkadang tidak aman, karena pointer diperlukan.

  • Jika aplikasi Anda harus mengonversi sejumlah besar data, aplikasi harus menggunakan kembali buffer output. Dalam hal ini, GetChars(Byte[], Int32, Int32, Char[], Int32) versi yang mendukung buffer karakter output adalah pilihan terbaik.

  • Pertimbangkan untuk menggunakan metode alih-alih Decoder.ConvertGetCharCount. Metode konversi mengonversi data sebanyak mungkin dan memberikan pengecualian jika buffer output terlalu kecil. Untuk pendekodean aliran berkelanjutan, metode ini sering kali merupakan pilihan terbaik.

Berlaku untuk

GetChars(Byte[])

Sumber:
Encoding.cs
Sumber:
Encoding.cs
Sumber:
Encoding.cs

Saat ditimpa dalam kelas turunan, dekode semua byte dalam array byte yang ditentukan menjadi sekumpulan karakter.

public:
 virtual cli::array <char> ^ GetChars(cli::array <System::Byte> ^ bytes);
public virtual char[] GetChars (byte[] bytes);
abstract member GetChars : byte[] -> char[]
override this.GetChars : byte[] -> char[]
Public Overridable Function GetChars (bytes As Byte()) As Char()

Parameter

bytes
Byte[]

Array byte yang berisi urutan byte yang akan didekodekan.

Mengembalikan

Char[]

Array karakter yang berisi hasil pendekodean urutan byte yang ditentukan.

Pengecualian

bytesadalah null.

Fallback terjadi (untuk informasi selengkapnya, lihat Pengodean Karakter di .NET)

-dan-

DecoderFallback diatur ke DecoderExceptionFallback.

Contoh

Contoh berikut mengodekan string ke dalam array byte, lalu mendekode byte menjadi array karakter.

using namespace System;
using namespace System::Text;
void PrintCountsAndChars( array<Byte>^bytes, Encoding^ enc );
int main()
{
   
   // Create two instances of UTF32Encoding: one with little-endian byte order and one with big-endian byte order.
   Encoding^ u32LE = Encoding::GetEncoding( "utf-32" );
   Encoding^ u32BE = Encoding::GetEncoding( "utf-32BE" );
   
   // Use a string containing the following characters:
   //    Latin Small Letter Z (U+007A)
   //    Latin Small Letter A (U+0061)
   //    Combining Breve (U+0306)
   //    Latin Small Letter AE With Acute (U+01FD)
   //    Greek Small Letter Beta (U+03B2)
   String^ myStr = "za\u0306\u01FD\u03B2";
   
   // Encode the string using the big-endian byte order.
   array<Byte>^barrBE = gcnew array<Byte>(u32BE->GetByteCount( myStr ));
   u32BE->GetBytes( myStr, 0, myStr->Length, barrBE, 0 );
   
   // Encode the string using the little-endian byte order.
   array<Byte>^barrLE = gcnew array<Byte>(u32LE->GetByteCount( myStr ));
   u32LE->GetBytes( myStr, 0, myStr->Length, barrLE, 0 );
   
   // Get the char counts, and decode the byte arrays.
   Console::Write( "BE array with BE encoding : " );
   PrintCountsAndChars( barrBE, u32BE );
   Console::Write( "LE array with LE encoding : " );
   PrintCountsAndChars( barrLE, u32LE );
}

void PrintCountsAndChars( array<Byte>^bytes, Encoding^ enc )
{
   
   // Display the name of the encoding used.
   Console::Write( "{0,-25} :", enc );
   
   // Display the exact character count.
   int iCC = enc->GetCharCount( bytes );
   Console::Write( " {0,-3}", iCC );
   
   // Display the maximum character count.
   int iMCC = enc->GetMaxCharCount( bytes->Length );
   Console::Write( " {0,-3} :", iMCC );
   
   // Decode the bytes and display the characters.
   array<Char>^chars = enc->GetChars( bytes );
   Console::WriteLine( chars );
}

/* 
This code produces the following output.  The question marks take the place of characters that cannot be displayed at the console.

BE array with BE encoding : System.Text.UTF32Encoding : 5   12  :zăǽβ
LE array with LE encoding : System.Text.UTF32Encoding : 5   12  :zăǽβ

*/
using System;
using System.Text;

public class SamplesEncoding  {

   public static void Main()  {

      // Create two instances of UTF32Encoding: one with little-endian byte order and one with big-endian byte order.
      Encoding u32LE = Encoding.GetEncoding( "utf-32" );
      Encoding u32BE = Encoding.GetEncoding( "utf-32BE" );

      // Use a string containing the following characters:
      //    Latin Small Letter Z (U+007A)
      //    Latin Small Letter A (U+0061)
      //    Combining Breve (U+0306)
      //    Latin Small Letter AE With Acute (U+01FD)
      //    Greek Small Letter Beta (U+03B2)
      String myStr = "za\u0306\u01FD\u03B2";

      // Encode the string using the big-endian byte order.
      byte[] barrBE = new byte[u32BE.GetByteCount( myStr )];
      u32BE.GetBytes( myStr, 0, myStr.Length, barrBE, 0 );

      // Encode the string using the little-endian byte order.
      byte[] barrLE = new byte[u32LE.GetByteCount( myStr )];
      u32LE.GetBytes( myStr, 0, myStr.Length, barrLE, 0 );

      // Get the char counts, and decode the byte arrays.
      Console.Write( "BE array with BE encoding : " );
      PrintCountsAndChars( barrBE, u32BE );
      Console.Write( "LE array with LE encoding : " );
      PrintCountsAndChars( barrLE, u32LE );
   }

   public static void PrintCountsAndChars( byte[] bytes, Encoding enc )  {

      // Display the name of the encoding used.
      Console.Write( "{0,-25} :", enc.ToString() );

      // Display the exact character count.
      int iCC  = enc.GetCharCount( bytes );
      Console.Write( " {0,-3}", iCC );

      // Display the maximum character count.
      int iMCC = enc.GetMaxCharCount( bytes.Length );
      Console.Write( " {0,-3} :", iMCC );

      // Decode the bytes and display the characters.
      char[] chars = enc.GetChars( bytes );
      Console.WriteLine( chars );
   }
}


/* 
This code produces the following output.  The question marks take the place of characters that cannot be displayed at the console.

BE array with BE encoding : System.Text.UTF32Encoding : 5   12  :zăǽβ
LE array with LE encoding : System.Text.UTF32Encoding : 5   12  :zăǽβ

*/
Imports System.Text

Public Class SamplesEncoding   

   Public Shared Sub Main()

      ' Create two instances of UTF32Encoding: one with little-endian byte order and one with big-endian byte order.
      Dim u32LE As Encoding = Encoding.GetEncoding("utf-32")
      Dim u32BE As Encoding = Encoding.GetEncoding("utf-32BE")

      ' Use a string containing the following characters:
      '    Latin Small Letter Z (U+007A)
      '    Latin Small Letter A (U+0061)
      '    Combining Breve (U+0306)
      '    Latin Small Letter AE With Acute (U+01FD)
      '    Greek Small Letter Beta (U+03B2)
      Dim myStr As String = "za" & ChrW(&H0306) & ChrW(&H01FD) & ChrW(&H03B2) 

      ' Encode the string using the big-endian byte order.
      ' NOTE: In VB.NET, arrays contain one extra element by default.
      '       The following line creates the array with the exact number of elements required.
      Dim barrBE(u32BE.GetByteCount(myStr) - 1) As Byte
      u32BE.GetBytes(myStr, 0, myStr.Length, barrBE, 0)

      ' Encode the string using the little-endian byte order.
      ' NOTE: In VB.NET, arrays contain one extra element by default.
      '       The following line creates the array with the exact number of elements required.
      Dim barrLE(u32LE.GetByteCount(myStr) - 1) As Byte
      u32LE.GetBytes(myStr, 0, myStr.Length, barrLE, 0)

      ' Get the char counts, and decode the byte arrays.
      Console.Write("BE array with BE encoding : ")
      PrintCountsAndChars(barrBE, u32BE)
      Console.Write("LE array with LE encoding : ")
      PrintCountsAndChars(barrLE, u32LE)

   End Sub


   Public Shared Sub PrintCountsAndChars(bytes() As Byte, enc As Encoding)

      ' Display the name of the encoding used.
      Console.Write("{0,-25} :", enc.ToString())

      ' Display the exact character count.
      Dim iCC As Integer = enc.GetCharCount(bytes)
      Console.Write(" {0,-3}", iCC)

      ' Display the maximum character count.
      Dim iMCC As Integer = enc.GetMaxCharCount(bytes.Length)
      Console.Write(" {0,-3} :", iMCC)

      ' Decode the bytes and display the characters.
      Dim chars As Char() = enc.GetChars(bytes)
      Console.WriteLine(chars)

   End Sub

End Class


'This code produces the following output.  The question marks take the place of characters that cannot be displayed at the console.
'
'BE array with BE encoding : System.Text.UTF32Encoding : 5   12  :zăǽβ
'LE array with LE encoding : System.Text.UTF32Encoding : 5   12  :zăǽβ

Keterangan

Encoding.GetChars mendapatkan karakter dari urutan byte input. Encoding.GetChars berbeda dari Decoder.GetChars karena Encoding mengharapkan konversi diskrit, sementara Decoder dirancang untuk beberapa pass pada satu aliran input.

Jika data yang akan dikonversi hanya tersedia dalam blok berurutan (seperti data yang dibaca dari aliran) atau jika jumlah data sangat besar sehingga perlu dibagi menjadi blok yang lebih kecil, Anda harus menggunakan Decoder atau Encoder yang disediakan oleh GetDecoder metode atau GetEncoder metode, masing-masing, dari kelas turunan.

Catatan

Metode ini dimaksudkan untuk beroperasi pada karakter Unicode, bukan pada data biner arbitrer, seperti array byte. Jika Anda perlu mengodekan data biner arbitrer ke dalam teks, Anda harus menggunakan protokol seperti uuencode, yang diimplementasikan oleh metode seperti Convert.ToBase64CharArray.

Metode menentukan GetCharCount berapa banyak karakter yang menghasilkan decoding urutan byte, dan GetChars metode melakukan decoding aktual. Metode ini Encoding.GetChars mengharapkan konversi diskrit, berbeda dengan Decoder.GetChars metode , yang menangani beberapa pass pada satu aliran input.

Beberapa versi GetCharCount dan GetChars didukung. Berikut ini adalah beberapa pertimbangan pemrograman untuk penggunaan metode ini:

  • Aplikasi Anda mungkin perlu mendekode beberapa byte input dari halaman kode dan memproses byte menggunakan beberapa panggilan. Dalam hal ini, Anda mungkin perlu mempertahankan status antar panggilan, karena urutan byte dapat terganggu ketika diproses dalam batch. (Misalnya, bagian dari urutan shift ISO-2022 dapat mengakhiri satu GetChars panggilan dan melanjutkan di awal panggilan berikutnya GetChars . Encoding.GetChars akan memanggil fallback untuk urutan yang tidak lengkap, tetapi Decoder akan mengingat urutan tersebut untuk panggilan berikutnya.)

  • Jika aplikasi Anda menangani output string, disarankan untuk menggunakan metode .GetString Karena metode ini harus memeriksa panjang string dan mengalokasikan buffer, metode ini sedikit lebih lambat, tetapi jenis yang String dihasilkan lebih disukai.

  • Versi GetChars(Byte*, Int32, Char*, Int32) byte memungkinkan beberapa teknik cepat, terutama dengan beberapa panggilan ke buffer besar. Namun, perlu diingat bahwa versi metode ini terkadang tidak aman, karena pointer diperlukan.

  • Jika aplikasi Anda harus mengonversi sejumlah besar data, aplikasi harus menggunakan kembali buffer output. Dalam hal ini, GetChars(Byte[], Int32, Int32, Char[], Int32) versi yang mendukung buffer karakter output adalah pilihan terbaik.

  • Pertimbangkan untuk menggunakan metode alih-alih Decoder.ConvertGetCharCount. Metode konversi mengonversi data sebanyak mungkin dan memberikan pengecualian jika buffer output terlalu kecil. Untuk pendekodean aliran berkelanjutan, metode ini sering kali merupakan pilihan terbaik.

Lihat juga

Berlaku untuk