将XML有效负载转换为Dataweave 2.0中的字符串

时间:2019-03-15 10:21:32

标签: mule anypoint-studio dataweave

如何在Dataweave 2.0中将xml有效负载转换为字符串?

谢谢 Vempati

2 个答案:

答案 0 :(得分:1)

最好的方法是类似。

output application/java
---
payload.^raw as String

.^raw返回基础输入流,然后将其转换为String并将其作为Java值返回,因此有效负载为java.lang.String

答案 1 :(得分:0)

https://docs.mulesoft.com/mule-runtime/4.1/dw-core-functions-write

write(payload, "text/plain", {"encoding": "UTF-8"})