안 드 로 이 드 개발 기초 튜 토리 얼-세 가지 방식 으로 xml 파일 분석 실현
5293 단어 안 드 로 이 드 개발xml 파일해석 하 다.
/**
* sax
*/
public class SaxParse{
/**
* sax
*/
private SAXParser parser;
public SaxParse(){
try {
SAXParserFactory f = SAXParserFactory.newInstance();
parser = f.newSAXParser();
} catch (ParserConfigurationException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
public List<Person> doParse(InputStream is) {
try {
XmlHandler h = new XmlHandler();
parser.parse(is,h);
return h.getpersons();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
/**
*
*/
class XmlHandler extends DefaultHandler{
List<Person> persons = null ;
Person person = null ;
//
private String currEleName;
/**
*
*/
public void characters(char[] ch, int start, int length)throws SAXException {
String str = new String(ch,start,length);
//name
if("name".equals(currEleName)){
person.name = str ;
}
else if("age".equals(currEleName)){
person.age = Integer.parseInt(str);
}
}
public void endDocument() throws SAXException {
}
/**
*
*/
public void endElement(String uri, String localName, String qName)
throws SAXException {
if("person".equals(localName)){
persons.add(person);
}
//
else if(("name".equals(currEleName)) || ("age".equals(currEleName))){
this.currEleName = "" ;
}
}
/**
*
*/
public void startDocument() throws SAXException {
persons = new ArrayList<Person>();
}
/**
*
* localName:
* uri:
* qName: , +
*/
public void startElement(String uri, String localName, String qName,
Attributes attributes) throws SAXException {
// person
if("person".equals(localName)){
person = new Person();
person.id = Integer.parseInt(attributes.getValue(0));
}
//name
else if("name".equals(localName)){
this.currEleName = "name" ;
}
//name
else if("age".equals(localName)){
this.currEleName = "age" ;
}
}
public List<Person> getpersons(){
return persons ;
}
}
}
2.dom 방식
/**
* DOM
*/
public class DomParse{
//
private DocumentBuilder builder;
public DomParse(){
try {
DocumentBuilderFactory f = DocumentBuilderFactory.newInstance();
this.builder = f.newDocumentBuilder();
} catch (Exception e) {
e.printStackTrace();
}
}
public List<Person> doParse(InputStream is) {
List<Person> persons = new ArrayList<Person>();
Person person = null ;
try {
Document doc = builder.parse(is);
NodeList list = doc.getElementsByTagName("person");
Element ele = null ;
for(int i = 0 ; i < list.getLength() ; i ++){
ele = (Element) list.item(i);
person = new Person();
person.id = Integer.parseInt(ele.getAttribute("id"));
person.name = getSubElementTextContent(ele,"name");
person.age = Integer.parseInt(getSubElementTextContent(ele,"age"));
persons.add(person);
}
} catch (Exception e) {
e.printStackTrace();
}
return persons;
}
/**
*
*/
private String getSubElementTextContent(Element ele, String tagName) {
NodeList list = ele.getElementsByTagName(tagName);
Element e = (Element) list.item(0);
//
return e.getTextContent();
}
}
3.pull 방식
/**
* pull , , .
*/
public class PullParse{
public List<Person> doParse(InputStream is) {
List<Person> persons = null ;
Person person = null ;
try {
XmlPullParser parser = Xml.newPullParser();
//
parser.setInput(is, "utf-8");
//
int eventType = parser.getEventType();
String eleName = null ;
while(eventType != XmlPullParser.END_DOCUMENT){
switch(eventType){
//
case XmlPullParser.START_DOCUMENT:
persons = new ArrayList<Person>();
break ;
//
case XmlPullParser.START_TAG:
eleName = parser.getName();
if("person".equals(eleName)){
person = new Person();
person.id = Integer.parseInt(parser.getAttributeValue(0));
}
else if("name".equals(eleName)){
person.name = parser.nextText();
}
else if("age".equals(eleName)){
person.age = Integer.parseInt(parser.nextText());
}
break ;
//
case XmlPullParser.END_TAG:
eleName = parser.getName();
if("person".equals(eleName)){
persons.add(person);
}
break ;
}
//
eventType = parser.next();
}
} catch (Exception e) {
e.printStackTrace();
}
return persons;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Android 개발 에 사용 되 는 MT 난수 생 성기이전의 AS3 이식 판 을 약간 고 쳐 서 현재 jkanji 에 사용 하고 있 습 니 다.테스트 를 좀 해 봤 는데 버그 가 별로 없 는 것 같 아 요.가장 간단 한 동전 테스트 를 해 봤 는데 같은 씨앗 의 경우 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.