1
我需要編寫用於將csv轉換爲xml的數據編碼代碼。我的輸出xml不應該包含xml聲明('<?xml version='1.0' encoding='UTF-8'?>')
。使用dataweave寫入文件時省略xml聲明
dataweave代碼:
%dw 1.0
%output application/xml
---
parent :{
child1:payload.input1,
child2:payload.input2
}
預期輸出:
<parent>
<child1></child1>
<child2><child2>
</parent>
本次輸出:
<?xml version='1.0' encoding='UTF-8'?>
<parent>
<child1></child1>
<child2></child2>
</parent>
請建議我在報頭部分要添加的指令。謝謝
嗨@masetti,我發現的唯一的事情就是使用XSLT來省略xml聲明。請參閱此鏈接:http://stackoverflow.com/questions/14800746/need-to-remove-xml-version-1-0-encoding-utf-16-from-the-xml –