유니티 ) JSON 파싱 주의점
Programing/유니티 2013. 12. 4. 17:50 |JSON 예제 파일 내용
{ Unit : { Name : Jaeho, Age : 20 }, Temp : 111 }
public string GetString(string key,string jsonResult){
try
{
JSONObject jsonObj = JSONObject.Parse(jsonResult);
return jsonObj.GetString(key);
}catch(Exception e){
return "";
}
}
public JSONObject GetObject(string key,string jsonResult){
try{
JSONObject jsonObj = JSONObject.Parse(jsonResult);
return (JSONObject)jsonObj.GetObject(key);
}catch(Exception e){
return null;
}
}
JSONObject jsonObj = JSONObject.Parse(jsonResult);
return jsonObj.GetString(key);
JSONObject szUnit = WemeManager.getObject("Unit", szAuthData);
string szName = WemeManager.getString("Name", szUnit .ToString());
'Programing > 유니티' 카테고리의 다른 글
[유니티] 특정 폰에서 Label(폰트) 안 나오는 문제 (0) | 2015.02.12 |
---|---|
Unity anim 설정 (Animator or Animation) (0) | 2014.11.27 |
유니티 셰이더 Culling 옵션 (0) | 2013.11.26 |
유니티) 셰이더 체인지 (0) | 2013.11.26 |
유니티 ) 랜더링 순서 조절 - renderQueue (0) | 2013.11.06 |