이 API를 구글 여기 SAX 파서 결과 XML을 전달하는 요청을 할 SAX 파서에 httpget에서어떻게 ... 난
먼저 요청을 결과를 모두 코드가 있습니다 통과 않습니다
HttpClient hclient = new DefaultHttpClient();
HttpGet get = new HttpGet("http://www.google.com/ig/api?weather=Cardiff");
HttpResponse hrep = hclient.execute(get);
HttpEntity httpEntity = hrep.getEntity();
그런 다음 파서 :
SAXParserFactory saxpf = SAXParserFactory.newInstance();
SAXParser saxp = saxpf.newSAXParser();
XMLReader xr = saxp.getXMLReader();
ExHandler myHandler = new ExHandler();
xr.setContentHandler(myHandler);
xr.parse();
이이 작업을 수행하는 올바른 방법이며 어떻게 두 코드를 연결합니까. 미리
parse 메서드가 InputSource를 사용하는 eclipse에 따르면 여전히 작동하지 않습니다. httpEntity를 입력 소스로 변환 할 수있는 방법이 있습니까? – Amanni
기본적으로 http 요청의 응답을 파서에 전달할 수있는 방법을 알아야합니다. – Amanni