我有一个xml文件,我希望在标记之前读取节点值以及注释并移动到mysql数据库。我尝试过使用DOM,我可以在单独的数组中读取所有注释,并且单独数组中的节点值不能将精确注释与精确节点值匹配。在PHP中可以使用PHP或python中的任何一个帮助
<ig:prescribed_property property_ref="0161-1#02-012537#1" is_required="true" combination_allowed="false" one_of_allowed="false">
<dt:controlled_value_type representation_ref="0161-1#04-000006#1">
<!-- NOT PROVIDED(Code:C,Table:AB22) -->
<dt:value_of_property value_ref="0161-1#07-006593#1"/>
<!-- PROVIDED(Code:B,Table:AB22) -->
<dt:value_of_property value_ref="0161-1#07-006627#1"/>
</dt:controlled_value_type>
</ig:prescribed_property>
例如:-0161-1#07-006593#1 - &gt;未提供(代码:C,表:AB22)
像这样我想读,在java中我们可以用lexicalhandler和contenthandler来做到这一点