블로그 이미지
Sunny's

calendar

1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30

Notice

'한글'에 해당되는 글 1

  1. 2010.08.27 ASP.NET MVC Naver API 에서 한글 utf8 파라미터 Encode
2010. 8. 27. 17:34 ASP.NET



C# Naver API 에서 한글 utf8 파라미터 Encode 하기

 

 public static string EncodeText(string textToEncode)
{

            UTF8Encoding utf8 = new UTF8Encoding();
            Byte[] encodedBytes = utf8.GetBytes(textToEncode);
            string tempStr = "";
            foreach (Byte b in encodedBytes)
            {
                tempStr += "%" + string.Format("{0:X}", b);
            }
            return tempStr;

}

posted by Sunny's
prev 1 next