本文介绍了使用Java读取xml值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好

All,
I want to read value from following < Line> xml using java.. In < Line>,data is in format of key and value pair.. i want to read only values..could u plz help me in this

<?xml version="1.0" encoding="UTF-8" ?>
<sales>
<item>
<line>002:OR,004:0001,002:01,002:01,007:SCEM_02,000:,007:590,000,002:KG,002:PC;/</line>
</item>
</sales>

Regards,
Glory

推荐答案

function ReadXml(retval,AD8)
{
var xmldoc=new ActiveXObject("Microsoft.XMLDOM");
        xmldoc.loadXML(retval);

        var node=xmldoc.getElementsByTagName('UrFieldName');
        //alert(node[0].childNodes[0].data);
        if (node[0]!=null) AD8.value=node[0].childNodes[0].data;

    }


retval是您的xml文件数据值.


retval is your xml file data value.



这篇关于使用Java读取xml值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-26 13:20