0

我想解析具有相同父子标签的 XML,然后最好使用 SAX 解析器将父标签的值链接到子标签。

这是 XML 文件

<?xml version="1.0" encoding="UTF-8"?>

<!-- Protocol header -->
<Protocol id="Diameter customer, country" spec="RFC3588" 
          name="Diameter" version="1.0" 
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
          xsi:noNamespaceSchemaLocation="file:/$CLASSES/cmg/stdapp/diameter/validation/Diameter_addon_schema.xsd">
 <!-- ACR declaration: Start -->
  <Request name="Start">
    <Condition key="Accounting-Record-Type" value="2"/>
    <AVP name="Node-Id" defaultValue="MTAS"/>
    <AVP name="Session-Id"/>
    <AVP name="Origin-Host"/>

        <AVP name="Subscription-Id">
            <AVP name="Subscription-Id-Type"/>
            <AVP name="Subscription-Id-Data"/>
        </AVP>
        <AVP name="IMS-Information">
            <AVP name="Event-Type">
                <AVP name="SIP-Method"/>
            </AVP>
            <AVP name="Role-of-Node"/>
         </AVP> 

  </Request>
<!---->


</Protocol>

在此示例中,带有 name 的AVP标签具有具有相同 name 的子标签AVP。我想获取属性名称的值,然后将父项的值与子项的值相关联。我为此使用 SAX 解析器,但我无法区分父子标签,但没有区分父子标签。

Java 代码是

public void startElement(String s, String s1, String elementName, Attributes attributes) throws SAXException
{
    if (elementName.equalsIgnoreCase("AVP")) 
    {
        AVP_Tmp = new AVP();
        String nameValue = attributes.getValue("name");
         if (nameValue == null)
         {
             nameValue =attributes.getValue("value");
         }
         if (nameValue != null)
         {
             AVP_Tmp.set(nameValue,elementName,attributes);
         }
    }
}

@Override
public void endElement(String s, String s1, String element) throws SAXException 
{
    if (element.equals("AVP")) 
    {
        Object key = AVP_Tmp.tmpValue;
        Object value = AVP_Tmp.tmpValue;
        AVPL.put(key, value);                       
    }
}

是一个类,其AVP_Tmpset方法如下:

public void set(String nameValue, String qName, Attributes attrs)//, int k)
{
    int len = attrs.getLength();
    tmpValue=qName + "-->" + nameValue;
    List list = new ArrayList();
    for (int i = 0; i < len; i++)
    {
        list.add(attrs.getQName(i));
    }
    Collections.sort(list);
    for (int i = 0; i < len; i++)
    {
         name1[i]= (Object)list.get(i);
         value1[i]=(attrs.getValue((String) list.get(i)));
        tmpValue=tmpValue+ "\n" +name1[i]+"="+value1[i];
    }
}

我目前的输出为:

Node-Id
..
..
Subscription-Id
Subscription-Id-Type
IMS-Information
Event-Type
SIP-Method
..

我希望输出格式如下:

Node-Id
..
..
..
Subscription-Id#Subscription-Id-Type
IMS-Information#Event-Type#SIP-Method
..
4

1 回答 1

0

当我的目标正确时,我会这样做,即您构建“AVP-Structure”,然后提取所需的输出。

所以当一个新的 AVP 启动时,它看起来像这样(只是在伪代码中):

if (parent == null){
   avpTemp = new AVP();
   parent = avpTemp;
} else {avpTemp = new AVP(parent); }

解析后,您获得了层次结构并根据需要构建结构/结果。

于 2012-11-05T10:36:15.647 回答