Como selecionar o valor xml usando starlet xml

0

Como recupero um valor usando xmlstarlet?

Estou tentando recuperar o valor inicial 4.7 do seguinte arquivo xml:

<?xml version="1.0"?>
<GCContextualMethod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.agilent.com/schemas/Analytical/Instrument/GC7890/2006/">
  <method xmlns="">
    <GC PostRunHoldTime="0" AutoPrepRun="UNKNOWN">
      <Inlet DeterminesReadiness="true">
        ...
      </Inlet>
      <Inlet DeterminesReadiness="true" />
      <Column DeterminesReadiness="true">
        ...
      </Column>
      <Column DeterminesReadiness="true">
        <Setpoints Mode="CONSTANT_FLOW">
          <Flow State="ON" InitialHoldTime="0" InitialValue="4.7" PostRunValue="4.7" />
        </Setpoints>
      </Column>
      <Column DeterminesReadiness="false">  

Eu tentei o seguinte, mas não funcionou:

%cd%\resources\XML.EXE sel -t -c "/GCContextualMethod/method[@xmlns=""]/GC[@PostRunHoldTime="0"]/Column[2]/Setpoints[@Mode="CONSTANT_FLOW"]/Flow[@State="ON"]@InitialValue"  %cd%\GC78901.RapidControl.MethodXML.xml
    
por JvE010 13.06.2016 / 15:45

1 resposta

0

No powershell, é só para linhas:

[xml]$XmlDocument = Get-Content -Path C:\...\test.xml
$XmlDocument.GCContextualMethod.method.GC.Column.Setpoints.Flow.InitialValue | Out-File c:\temp\result.txt

Salve isso em algum script.ps1 e mude o caminho para o xml real. O resultado 4.7 será enviado para o arquivo txt.

Por favor, note que no arquivo xml real todos os elementos como "GCContextualMethod" ou "method" devem ter um par de fechamento para o de abertura. Isso não está representado no seu exemplo. Então, ao criar uma amostra s, acabei por xml com:

 </GC>
</method>
</GCContextualMethod>
    
por 17.06.2016 / 18:43