CFXML代码在我的一个xpath上生成hexBinary

时间:2009-06-01 21:55:14

标签: xml coldfusion

我需要生成以下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>

1 个答案:

答案 0 :(得分:0)

使用<CFXML>标记是在CFML中构造XML对象的最简单方法。

hexBinary可以使用:BinaryEncode(yourBinaryData, "Hex")

进行编码

<cftimer>可用于衡量标签之间执行代码段所花费的时间。或GetTickCount()