3

私は最近、16 進数やバイナリなどの他の「言語」と共に、Base64 をエンコードおよびデコードできる iOS アプリケーションを作成しようとしていました。自動デコーダー(「言語」を自動的に検出できる)を作成しようとしていました。ただし、Base64 に到達すると、Base64 文字列に改行文字が含まれているため、自動デコーダーは有効な Base64 を検出できないようです。私の Base64 検出コードを以下に示します。

-(BOOL)isBase64Data:(NSString *)input
{
    if ([input length] % 4 == 0) {
        static NSCharacterSet *invertedBase64CharacterSet = nil;
        if (invertedBase64CharacterSet == nil) {
            invertedBase64CharacterSet = [[NSCharacterSet characterSetWithCharactersInString:@"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="]invertedSet];
        }
        return [input rangeOfCharacterFromSet:invertedBase64CharacterSet options:NSLiteralSearch].location == NSNotFound;
    }
    return NO;
}

追加情報として、NSString で「言語」のタイプを検出する方法を次に示します。

-(NSInteger)detectType:(BOOL)base64 hexadecimal:(BOOL)hex binary:(BOOL)binary
{
    //Make sure the checking of characters are in this order!
    if (binary) {
        return 0; //Type 0 means binary
    }
    else if (hex) {
        return 1; //Type 1 means hexadecimal
    }
    else if (base64) {
        return 2; //Type 2 means base64
    }
    else {
        return 3; //Type 3 is error/invalid text
    }
}

デコードしたいときはいつでもこのメソッドを呼び出すだけです:

-(IBAction)decode:(id)sender
{
    //This is where I detect the type
    NSInteger type = [self detectType:[self isBase64Data:userInput.text] hexadecimal:[self isHexadecimal:userInput.text] binary:[self isBinary:userInput.text]];

    if ([userInput text].length<1) { //First, check if the text view is empty in the first place
        WCAlertView *alert=[[WCAlertView alloc]initWithTitle:@"Error: No input!" message:nil delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil, nil];
        [alert show];
    }
    else if (type==0) {
        //Initiate the binary converter here
        TextBinViewController *binVC=[[TextBinViewController alloc]init];
        output.text=[binVC binToText:userInput.text];
    }
    else if (type==1) {
        //Initiate the hexadecimal converter here
        TextHexViewController *hexVC=[[TextHexViewController alloc]init];
        output.text=[hexVC hexToText:userInput.text];
    }
    else if (type==2) {
        //Initiate the base64 converter here
        TextBase64ViewController *baseVC=[[TextBase64ViewController alloc]init];
        output.text=[baseVC base64Decode:userInput.text];
    }
    else {
        //If the type matches none of the above, show an error (WCAlertView is a subclass of alertview that allows more styling)
        WCAlertView *alert=[[WCAlertView alloc]initWithTitle:@"Error: Invalid input!" message:nil delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil, nil];
        [alert show];
        output.text=@"";
    }

    [userInput resignFirstResponder];
}
4

2 に答える 2

5

わかりました、文字列からすべての改行文字を単純に削除できることに気付きました。更新された -isBase64Data メソッドは次のとおりです。

-(BOOL)isBase64Data:(NSString *)input
{

    input=[[input componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] componentsJoinedByString:@""];
    if ([input length] % 4 == 0) {
        static NSCharacterSet *invertedBase64CharacterSet = nil;
        if (invertedBase64CharacterSet == nil) {
            invertedBase64CharacterSet = [[NSCharacterSet characterSetWithCharactersInString:@"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="]invertedSet];
        }
        return [input rangeOfCharacterFromSet:invertedBase64CharacterSet options:NSLiteralSearch].location == NSNotFound;
    }
    return NO;
}

Base64 文字列の検出が正しく機能するようになりました。文字列に改行文字などが含まれている場合、 は[input length] % 40 を返さないことがわかりました。したがって、現在の解決策は、whitespaceAndNewlineCharacterSet.

于 2013-09-07T15:49:57.947 に答える