기록을 위해 적어 둔다.
경로명에 한글이 있어서 에러가 난다.
해결법.
cmd를 연다.
안드로이드 sdk가 깔린 폴더 \tools 까지 이동한다.
android move avd -n AVD이름 -p C:\이동하고 싶은 폴더까지의 경로
존재하지 않는 폴더로 입력하자(새로 만들면서 이동하는 듯하다.)
결과 : AVD 파일명 moved. 출력.
// 오리지널 메시지
NSString *original = @"Hello, Nice to meet you\nWelcome to my blog(http://theeye.pe.kr)";
// URL Encode
NSString *escaped = [original stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"escaped string :\n%@", escaped);
// URL Decode
NSString *decoded = [escaped stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"decoded string :\n%@", decoded);
2009-04-03 12:20:58.721 URLEncodeExample[342:20b] escaped string :
Hello,%20Nice%20to%20meet%20you%0AWelcome%20to%20my%20blog(http://theeye.pe.kr)
2009-04-03 12:20:58.723 URLEncodeExample[342:20b] decoded string :
Hello, Nice to meet you
Welcome to my blog(http://theeye.pe.kr)
최근 덧글