Contents

Develop
2013.04.23 17:35

[c#] Hashtable <-> Json (dll 포함)

조회 수 80719 댓글 0
Atachment
첨부 '1'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
# 샘플코드
using System.Net.Json;

public string ConvertHashtableToJson(Hashtable data)
{
    JsonObjectCollection result = new JsonObjectCollection();

    foreach(DictionaryEntry item in data)
    {
        result.Add(new JsonStringValue(item.Key.ToString(),
            item.Value.ToString()));
    } 

    return result.ToString();
}

public Hashtable ConvertJsonToHashtable(string json)
{
    JsonTextParser parse = new JsonTextParser();
    JsonObject object = parse.Parse(json);
    Hashtable result = new Hashtable();

    foreach(JsonObject item in obj as JsonObjectCollection)
    {
        result.add(item.Name, item.GetValue().ToString());
    }
}

[참고] http://bit.ly/hYMCLL (여기와 같은 dll을 업로드 함.)
TAG •

?

  1. [C#] MD5, SHA1 해시 & 인코딩

    Date2013.04.23 CategoryDevelop Byhooni Views77951
    Read More
  2. [c#] Json 라이브러리 (System.Net.Json.dll)

    Date2013.04.23 CategoryDevelop Byhooni Views58578
    Read More
  3. [c#] HTML 이벤트 샘플 소스..

    Date2013.04.23 CategoryDevelop Byhooni Views7782
    Read More
  4. [c#] Hashtable <-> Json (dll 포함)

    Date2013.04.23 CategoryDevelop Byhooni Views80719
    Read More
  5. [c#] BHO 한샘툴바랑 동현툴바..

    Date2013.04.23 CategoryDevelop Byhooni Views2208
    Read More
  6. [c#] BFilter 툴바 소스 코드 ㅎㅎ

    Date2013.04.23 CategoryDevelop Byhooni Views7661
    Read More
  7. [bios] 시스템 부팅 도중 발생하는 비프음

    Date2003.04.23 CategorySystem/OS Byhooni Views18242
    Read More
  8. [asp] 폼메일 예제와 메일 포워딩 프로그램

    Date2013.04.23 CategoryDevelop Byhooni Views7156
    Read More
  9. [asp] 폼 메일 소스

    Date2013.04.23 CategoryDevelop Byhooni Views7386
    Read More
  10. [asp] 문자열 넘겨받기 (get,post)

    Date2013.04.23 CategoryDevelop Byhooni Views8743
    Read More
  11. [asp] 문자열 관련 함수 요약

    Date2013.04.23 CategoryDevelop Byhooni Views7808
    Read More
  12. [asp] 기본 문법과 제어문

    Date2013.04.23 CategoryDevelop Byhooni Views7157
    Read More
Board Pagination Prev 1 ... 84 85 86 87 88 89 90 91 92 93 ... 98 Next
/ 98