我有XML文件,包含37個主要文件夾,每個主要文件夾包含次要文件夾數量,每個次要文件夾包含3個地點標記。將節點插入XML文件中的某個節點使用R
我想將此節點添加到第一個主要文件夾中的第一個次要文件夾的第一個地標。
我想這樣做,但有些問題面臨我... 第一有我的節點,我想補充
top = newXMLNode("description")
table = newXMLNode("table", attrs = c(width = 300, border = 1), parent = top)
tbody <- newXMLNode("tbody",parent = table)
tr <- newXMLNode("tr",parent = tbody)
th <- newXMLNode("th",attrs = c(scope = "col"),scope1 = 5,parent = tr)
th <- newXMLNode("th",attrs = c(scope = "col"),scope1 = "MD",parent = tr)
th <- newXMLNode("th",attrs = c(scope = "col"),scope1 = "PM",parent = tr)
tr <- newXMLNode("tr",parent = tbody)
th <- newXMLNode("th",attrs = c(scope = "col"),scope1 = 5,parent = tr)
th <- newXMLNode("th",attrs = c(scope = "col"),scope1 = "MD",parent = tr)
th <- newXMLNode("th",attrs = c(scope = "col"),scope1 = "PM",parent = tr)
tr <- newXMLNode("tr",parent = tbody)
th <- newXMLNode("th",attrs = c(scope = "col"),scope1 =5,parent = tr)
th <- newXMLNode("th",attrs = c(scope = "col"),scope1 = "MD",parent = tr)
th <- newXMLNode("th",attrs = c(scope = "col"),scope1 = "PM",parent = tr)
tbody <- newXMLNode("tbody",parent = table)
th <- newXMLNode("img",attrs = c(src = URL,width = "700",height= "777",alt=""),parent =top)
這裏就是我想...
data <- xmlTreeParse("xml_data.xml")
data$doc$children$Folder[[4]][[3]][[3]]$description <- top
saveXML(data, file ="xml_data.xml")
第一個問題是:當我在控制檯中寫入「data$doc$children$Folder[[4]][[3]][[3]]
」時,說明節點不會出現在控制檯中,當我寫入「data$doc$children$Folder[[4]][[3]][[3]]$description
」時,它就會出現,我不知道爲什麼會發生這種情況。
第二個問題是:當我使用saveXML
檢查是否說明是在第一個地點標記或不....出現這個錯誤..
Error in (function (classes, fdef, mtable) :
unable to find an inherited method for function ‘saveXML’ for signature ‘"XMLDocument"’
我搜索了這一點,我發現我應該使用data <- xmlTreeParse(Url,useInternalNodes = TRUE)
。 ...但這不允許我使用data$doc$children$Folder[[4]][[3]][[3]]
...
所以請問,有沒有辦法將節點添加到xml文件中的這個位置?還是有解決我的問題?
here's我的xml文件。
您似乎想要將HTML表格嵌入到XML文件中。你可以建議在XML文件中使用編號索引而不是元素名稱path -' [[4]] [[3]] [[3]]'不容易看到嗎? – Parfait
我使用'[[4]] [[3]] [[3]]'....我使用這個公式,因爲當我在'data $ doc $ children $ Folder'後使用$時,我只有3個選項,是其他36選項,所以第4號指示第一個主文件夾,[[3]]指示第一個次要文件夾和[[3]]指示第一個地標 –
@Parfait,我發現一種方法來添加html到XML,但仍然存在的問題,我不能將XML保存到我的電腦上的文件,請告訴我,如果你知道嗎? 'data $ doc $ children $ Folder [[4]] [[3]] [[3]] [[「description」]] < - top' –