您好,登錄后才能下訂單哦!
這篇文章主要介紹了XML中Node和Element區別是什么,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
1.元素(Element)和結點(Node)的區別,元素是一個小范圍的定義,必須是含有完整信息的結點才是一個元素,例如<p>...</p>。但是一個結點不一定是一個元素,而一個元素一定是一個結點。
什么是node:
NODE是相對TREE這種數據結構而言的。TREE就是由NODE組成。這個部分你可以參考離散數學的樹圖。
什么是element
ELEMENT則是XML里的概念,<xxx>就是元素,是XML中的數據的組成部分之一。
素(Element)和結點(Node)的區別,元素是一個小范圍的定義,必須是含有完整信息的結點才是一個元素,例如<p>...</p>。但是一個結點不一定是一個元素,而一個元素一定是一個結點。
<a> <b> </b> <b> </b> <a>
DOM將文檔中的所有都看作節點 node>element
1DOM在解析文檔的時候按整個文檔的結構生成一棵樹,全部保存在內存
優點就是整個文檔都一直在內存中,我們可以隨時訪問任何節點,并且對樹的遍歷也是比較熟悉的操作;缺點則是耗內存,并且必須等到所有的文檔都讀入內存才能進行處理。
2一個需要注意的地方就是,XML文檔兩個標簽之間的空白也是這棵樹的一個節點(Text節點)。 <a> <b></b> <a> a有三個節點
Element root = doc.getDocumentElement();:root是什么????
NodeList list = root.getChildNodes(); root 到底是節點還是元素我不清楚?????
node有幾個子類型:
Element, Text, Attribute, RootElement, Comment, Namespace等
Element是可以有屬性和子節點的node。
Element是從Node繼承的
//轉換 if (node.getNodeType() == Element.ELEMENT_NODE) { Element e = (Element) node; }
元素有孩子嗎 ?
elemen et 性質
1 e.getAttributes()
2 e.getChildNodes()
3 e.getTagName()
Element root = doc.getDocumentElement();:root是什么????
NodeList list = root.getChildNodes(); root 到底是節點還是元素我不清楚???
······················································
public void domParse(String fileName) throws Exception { DocumentBuilderFactory f = DocumentBuilderFactory.newInstance(); DocumentBuilder db = f.newDocumentBuilder();//builder Document docment = db.parse(new File(fileName));//parese Element el = docment.getDocumentElement();//root domRead(el); } public void domRead(Element currentNode) { if ("struts-config".equals(currentNode.getNodeName())) { config = new StrutsConfig(); } NodeList list = currentNode.getChildNodes(); for (int i = 0; i < list.getLength(); i++) { Node node = list.item(i); if (node.getNodeType() == Element.ELEMENT_NODE) { Element e = (Element) node;//???? if ("form-beans".equals(e.getTagName())) { formBeans = new ArrayList<FormBeanConfig>(); domRead(e); } if ("form-bean".equals(e.getTagName())) { FormBeanConfig fc = new FormBeanConfig(); NamedNodeMap attrs = e.getAttributes(); for (int j = 0; j < attrs.getLength(); j++) { Attr attr = (Attr) attrs.item(j); if ("name".equals(attr.getName())) { fc.setName(attr.getValue()); } else { fc.setType(attr.getValue()); } } formBeans.add(fc); } if ("action-mapping".equals(e.getTagName())) { actions = new ArrayList<ActionConfig>(); domRead(e); } if ("action".equals(e.getTagName())) { ActionConfig ac = new ActionConfig(); NamedNodeMap attrs = e.getAttributes(); for (int k = 0; k < attrs.getLength(); k++) { Attr attr = (Attr) attrs.item(k); if ("path".equals(attr.getName())) { ac.setPath(attr.getValue()); } else if ("type".equals(attr.getName())) { ac.setType(attr.getValue()); } else { ac.setName(attr.getValue()); } } actions.add(ac); } } } }
感謝你能夠認真閱讀完這篇文章,希望小編分享XML中Node和Element區別是什么內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。