1; String XMLURL = 웹서버 주소;          
2;         
3;  DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
4;  DocumentBuilder builder = factory.newDocumentBuilder();
5;  //factory.setCoalescing(true); //<![CDATA[ ]]> 를 처리한다.
6;  Document xmlDoc = builder.parse(XMLURL);
        // Element element = (Element) xmlDoc.getDocumentElement();
           
            NodeList nodeListTag = xmlDoc.getElementsByTagName("item"); //첫번째 Depth의 태그명
           
            int lSize = nodeListTag.getLength(); //getElementsByTagName가 Array이므로 해당 node의 length를 구한다.
           
            for (int i = 0; i < lSize; i++) {
             NodeList nodeListChild = nodeListTag.item(i).getChildNodes();
            
             for (int j = 0; j < nodeListChild.getLength(); j++) {
              Node item = nodeListChild.item(j); //다다단계노드의 node
              String msg = item.getNodeName(); //다다단계노드의 node명
             
              if ("msg".equals(msg)){
               Log.i("msg",""+msg);
               String sNodeValue = item.getFirstChild().getNodeValue(); //다다단계노드의 value
              }
             }
            }

이런식으로 코딩을 짰는데 4번에서 unhandled exception type parserconfigurationexception 이런 애러문구와

6번에서 multiple markers at this line ( - unhandled exeception type saxexception - unhandled exception type ioexception)

이런 애러가 뜨네요 ㅠㅠ 뭐가 문제인거죠?