URL url = new URL(URL); DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); //XML문서 빌더 객체를 생성 doc = db.parse(new InputSource(url.openStream())); //XML문서를 파싱한다. doc.getDocumentElement().normalize(); NodeList nodeListRecord = doc.getElementsByTagName(RECORD); NodeList nodeListNo = doc.getElementsByTagName(NO); NodeList nodeListDate = do..