如何通过linux解析xml文件

iszxjhcz  于 2021-06-02  发布在  Hadoop
关注(0)|答案(1)|浏览(381)
<property>
  <name>javax.jdo.option.ConnectionUserName</name>
  <value>pass</value>
  <description>username to use against metastore database</description>
</property>

<property>
  <name>javax.jdo.option.ConnectionPassword</name>
  <value>pass`enter code here`</value>
  <description>password to use against metastore database</description>
</property>

如何获得javax.jdo.option.connectionusername-pass和javax.jdo.option.connectionpassword-pass

vktxenjb

vktxenjb1#

你可以试试

The xmllint program parses one or more XML files, specified on the command line 
as xmlfile. It prints various types of output, depending upon the options 
selected. It is useful for detecting errors both in XML code and 
in the XML parser itself.

它允许您使用--pattern选项通过xpath选择xml文档中的元素。
我刚刚给你的方法,现在如何使用它和获得所需的数据是你的责任。
如果你遇到任何问题,就把它贴出来。
它默认安装在ubuntu上。

相关问题