objective-c - char/NSData/NSString

3987 ワード

基礎知識

  • ビット&バイトコンピュータは、バイナリ(例えば101010)を格納する.各数字は1ビット(bit)であり、8ビットごとに1バイト(Byte)であり、ビットはコンピュータ伝送の最小単位であり、バイトは符号化の最小単位である.
  • 文字は文字ごとに1文字であり、異なる符号化が同じ文字に対応するために必要なバイト数も異なる.(英語は1バイト、中国語は2バイト)
  • 符号化符号化は、バイトから文字へのルールである.(例えば0001は1を表し、01は1を表す)
  • は符号化があれば復号があり、データはネットワークの中でバイナリ形式で伝送され、暗号化と復号がセットになったときにバイナリストリーム情報を正しく復号することができる.
  • 総括ビットとバイトはともに単位であり、文字は見た結果であり、復号符号化は固定規則
  • である.

    NSString & NSData & char


    Definition

  • NSData
  • はNSCopying NSCodingプロトコルに従い、オブジェクト向けの配列がバイト、すなわちバイナリ・データ・ストリーム・タイプとして格納されることを提供する.
  • ファイルの読み書きにはバッファが必要ですが、NSDataはキャッシュ領域を提供します.


  • Coding

  • char NSString char毎に印刷する場合、中国語の文字化けしは一度に2つ印刷できないため、後のunicode部分に解決方法があります.
      const char *chars = "this is a string, and contain  ";
    
      // char to NSString
      NSString *string = [[NSString alloc] initWithCString:chars encoding:NSUTF8StringEncoding];
      NSLog(@"%lu, %@", string.length, string); // 32, this is a string, and contain  
    
      // NSString to char
      chars = [string cStringUsingEncoding:NSUTF8StringEncoding];
      NSLog(@"%lu, %s", strlen(chars), chars); // 36, this is a string, and contain 中文
    
  • char -> NSData
      NSData *dataWithBytes = [NSData dataWithBytes:chars length:strlen(chars)];
    
      NSLog(@"%@", dataWithBytes);
      // <74686973 20697320 61204320 73747269 6e672c20 616e6420 636f6e74 61696e20 e4b8ade6 9687>
    
  • NString NSData
      NSString *string = @"this is a string, and contain  ";
    
      // NSString to data
      NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];
      NSLog(@"%@", data); // <74686973 20697320 61207374 72696e67 2c20616e 6420636f 6e746169 6e20e4b8 ade69687>
    
      // NSData to NSString
      string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
      NSLog(@"%@", string); // this is a string, and contain  
    
  • NSString ASCII
      // NSString to int ASCII
      NSString *charString = @"A";
      int asciiCode = [charString characterAtIndex:0];
      NSLog(@"%i", asciiCode); // 65
    
      // int to NSString
      asciiCode = 66;
      charString = [NSString stringWithFormat:@"%c", asciiCode];
      NSLog(@"%@", charString); // B
    
  • char ASCII
      // char to int ASCII
      char character = 'A';
      int asciiCode = (int)character;
      NSLog(@"%i", asciiCode); // 65
    
      // int to char
      asciiCode = 66;
      character = (char)asciiCode;
      NSLog(@"%c", character); // B
    

  • unicode

  • %c 8-bit unsigned character (unsigned char), printed by NSLog() as an ASCII character, or, if not an ASCII character, in the octal format\ddd or the Unicode hexadecimal format\udddd, where d is a digit.
  • %C 16-bit Unicode character (unichar), printed by NSLog() as an ASCII character, or, if not an ASCII character, in the octal format\ddd or the Unicode hexadecimal format\udddd, where d is a digit.
      NSString *theString = @"g";
      unichar theChar = [theString characterAtIndex:0];
      NSString *theString1 = [NSString stringWithFormat:@"%c", theChar];
      NSString *theString2 = [NSString stringWithFormat:@"%C", theChar];
      NSLog(@"%@, %d, %@, %@",theString, theChar, theString1, theString2);
      // g, 103, g, g
    
      theString = @" ";
      theChar = [theString characterAtIndex:0];
      theString1 = [NSString stringWithFormat:@"%c", theChar];
      theString2 = [NSString stringWithFormat:@"%C", theChar];
      NSLog(@"%@, %d, %@, %@",theString, theChar, theString1, theString2);
      //  , 23478, ¶,  
    

  • リファレンス

  • バイト&文字&バイナリ
  • How to convert ASCII value to a character in Objective-C?
  • 中国語文字ASCIIコードとNSString相互変換