가능한 중복을 구문 분석 할 수있는 방법 :
Android: How we can get the value from attribute from xml string안드로이드 : 우리가 OPML 문자열을
나는 다음과 같은 문자열을 가지고있다. attribute of outline
을 파싱하고 싶습니다. 내가 속성을 구문 분석하고 text
및 guide_id
의 값을 취할 수있는 방법
<opml version="1">
<head>
<status>200</status>
</head>
<body>
<outline type="text" text="General" guide_id="f1" is_default="true"/>
<outline type="text" text="Rock Stations" guide_id="f2"/>
<outline type="text" text="Rock Stations" guide_id="f3"/>
<outline type="text" text="Rock" guide_id="f4"/>
<outline type="text" text="Awdhesh" guide_id="f5"/>
</body>
</opml>
. 이 작업을 수행하는 데 사용할 수있는 파서는 무엇입니까?
이 Q/A 사이트가 아닙니다 코드 생성 사이트, 그래서 오히려 동일한에 대한 힌트와 가이드 라인을 요청하거나 반대 투표를 얻을 것이다, 코드를 요청 해달라고도 문제가 가까이 있습니다, [입니다 더 읽기] (http://stackoverflow.com/faq) – MKJParekh
내 대답을 참조하십시오. –