我需要生成以下xml数据包发布到hudson。 log xml项目基本上具有控制台输出行。任何人都可以帮助ColdFusion / Java正确编码该项目
<run>
<log encoding='hexBinary'>...hex binary encoded console output...</log>
<result>... integer indicating the error code. 0 is success and everything else is failure</result>
<duration>... milliseconds it took to execute this run ...</duration>
</run>
答案 0 :(得分:0)
使用<CFXML>
标记是在CFML中构造XML对象的最简单方法。
hexBinary可以使用:BinaryEncode(yourBinaryData, "Hex")
<cftimer>
可用于衡量标签之间执行代码段所花费的时间。或GetTickCount()