我有XML我想要複製的是像(檢查的xmlns =「」和標籤。我想創建原樣。XSLT空白命名空間
總的計算是照顧。只有這個問題。它是有效的。仍然客戶希望預期的格式是這樣的。任何幫助非常感謝。 三項任務
1)我需要添加命名空間員工xmnls =「1.2」xmlns:xsi =「3」xsi:schemalocation =「4 2)在輸出xml中生成像這樣的標籤不是 3)需要避免xmlns =「」
任何幫助提前gr eatly讚賞 rameshkumar辛格
Input.xml中
<Employees>
<employee>
<dept>1</dept>
<sec></sec>
</employee>
<employee>
<dept>2</dept>
<sec></sec>
</employee>
</Employees>
Expected.XML
<Employees xmnls="1.2" xmlns:xsi="3" xsi:schemalocation="4">
<totalemp>2</totalemp>
<employee>
<dept>1</dept>
<sec></sec>
<employee>
<employee>
<dept>2</dept>
<sec></sec>
<employee>
</Employees>
actual.XML
<Employees>
<totalemp>2</totalemp>
<employee xmlns="">
<dept>1</dept>
<sec/>
</employee>
<employee>
<dept>2</dept>
<sec/>
<employee>
</Employees>
您可以直接生成正確的XML,而不是嘗試使用XSLT進行轉換嗎? (順便說一句,你的「移位」鍵似乎被打破,因爲句子有隨機大小寫) –