次の方法で共有


UTF8Encoding.GetCharCount メソッド (Byte , Int32, Int32)

バイト配列の指定した範囲の要素をデコードした結果、取得される文字数を計算します。

Overrides Overloads Public Function GetCharCount( _
   ByVal bytes() As Byte, _   ByVal index As Integer, _   ByVal count As Integer _) As Integer
[C#]
public override int GetCharCount(byte[] bytes,intindex,intcount);
[C++]
public: int GetCharCount(unsigned charbytes __gc[],intindex,intcount);
[JScript]
public override function GetCharCount(
   bytes : Byte[],index : int,count : int) : int;

パラメータ

  • bytes
    デコードするバイト配列。
  • index
    デコードする bytes 内の最初のバイトのインデックス。
  • count
    デコードするバイト数。

戻り値

bytes 内の指定した範囲の要素をデコードした結果、取得される可能性がある文字数。

例外

例外の種類 条件
ArgumentNullException bytes が null 参照 (Visual Basic では Nothing) です。
ArgumentOutOfRangeException index または count が 0 未満です。

または

indexcount を加算した値が、 bytes の長さを超えています。

ArgumentException 無効なサロゲート ペア シーケンスが検出されました。このインスタンスの UTF8Encoding コンストラクタは、無効なエンコーディングが検出された場合に例外をスローするように指定されています。

解説

デコードされたバイトを格納するために GetChars メソッドによって要求された配列サイズを正確に計算するには GetCharCount を使用し、その最大値を計算するには GetMaxCharCount を使用します。

使用例

[Visual Basic, C#, C++] UTF8Encoding を使用してバイト配列 bytes からある範囲の要素をデコードし、その結果の文字数を GetCharCount メソッドを使用して返す方法を次の例に示します。

 
Imports System
Imports System.Text

Class UTF8EncodingExample
    
    Public Shared Sub Main()
        Dim bytes() As Byte = { _
            85,  84,  70,  56,  32,  69, 110, _
            99, 111, 100, 105, 110, 103,  32, _
            69, 120,  97, 109, 112, 108, 101 _
        }
        
        Dim utf8 As New UTF8Encoding()
        Dim charCount As Integer = utf8.GetCharCount(bytes, 2, 8)
        Console.WriteLine("{0} characters needed to decode bytes.", charCount)
    End Sub 'Main
End Class 'UTF8EncodingExample

[C#] 
using System;
using System.Text;

class UTF8EncodingExample {
    public static void Main() {
        Byte[] bytes = new Byte[] {
             85,  84,  70,  56,  32,  69, 110,
             99, 111, 100, 105, 110, 103,  32,
             69, 120,  97, 109, 112, 108, 101
        };

        UTF8Encoding utf8 = new UTF8Encoding();
        int charCount = utf8.GetCharCount(bytes, 2, 8);
        Console.WriteLine(
            "{0} characters needed to decode bytes.", charCount
        );
    }
}

[C++] 
#using <mscorlib.dll>
using namespace System;
using namespace System::Text;

int main()
{
   Byte bytes[] = 
   {
      85,  84,  70,  56,  32,  69, 110,
      99, 111, 100, 105, 110, 103,  32,
      69, 120,  97, 109, 112, 108, 101
   };

   UTF8Encoding* utf8 = new UTF8Encoding();
   int charCount = utf8 -> GetCharCount(bytes, 2, 8);
   Console::WriteLine(S"{0} characters needed to decode bytes.", __box(charCount));
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard

参照

UTF8Encoding クラス | UTF8Encoding メンバ | System.Text 名前空間 | UTF8Encoding.GetCharCount オーバーロードの一覧