안녕하세요.이제 막 아이폰 개발 공부를 시작했습니다. 블로그에도 관련 포스팅이 많이 늘어날것같네요.! 오늘 그 시작으로 JSOINKit 라이브러리를 정리해놓습니다. 기본 JSON파싱보다 약 3배 빠르다고하네요! https://github.com/johnezang/JSONKit 에서 다운가능합니다..h, .m 2개의 파일로 구성되어있습니다 (정말 간단하죠!) 사용법 #import "JSONKit.h" ... NSString *filePath = [[NSBundle mainBundle] pathForResource:@"items" ofType:@"json"]; NSString *a = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEnco..
using System.Xml; private HttpGet req = new HttpGet(); string url = "xml 형태의 주소"; req.Request(url); XmlReader reader = XmlReader.Create(new StringReader(req.ResponseBody)); try{ reader.ReadToFollowing("NAME"); string xValue = reader.ReadElementContentAsString(); Console.WriteLine(xValue); } catch (Exception){ Console.WriteLine("Exception"); } reader.Close();
package com.example.test import java.io.BufferedInputStream; import java.net.URL; import java.net.URLConnection;import android.app.Activity; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.Bundle; import android.provider.SyncStateContract.Constants; import android.widget.ImageView; import android.widget.ViewFlipper;public class s_imgViewMain extends Activ..