1

我正在寻找一个显示使用 Nokogiri 解析 Acrobat XFDF 数据的 ruby​​ 代码片段。

4

2 回答 2

1

这与解析任何其他 XML 没有什么不同:

require 'nokogiri'

xfdf = '<?xml version="1.0" encoding="UTF-8"?>
<xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">
  <f href="Demo PDF Form.pdf"/>
  <fields>
    <field name="Date of Birth">
      <value>01-01-1960</value>
    </field>
    <field name="Your Name">
      <value>Mr. Customer</value>
    </field>
  </fields>
  <ids original="FEBDB19E0CD32274C16CE13DCF244AD2" modified="5BE74DD4F607B7409DC03D600E466E12"/>
</xfdf>
'

doc = Nokogiri::XML(xfdf)
doc.at('//xmlns:f')['href'] # => "Demo PDF Form.pdf"
doc.at('//xmlns:field[@name="Date of Birth"]').text # => "\n      01-01-1960\n    "
doc.at('//xmlns:field[@name="Your Name"]').text # => "\n      Mr. Customer\n    "

它使用 XML 命名空间,因此您必须在 xpath 中尊重它,或者通过告诉 Nokogiri 忽略它们来处理它,但这在 XML 中很常见。

于 2011-05-14T23:04:38.993 回答
0

你可以使用[nguyen][1]gem 来做解析工作

xfdf = Nguyen::Xfdf.new(:key => 'value', :other_key => 'other value')

# use to_xfdf if you just want the XFDF data, without writing it to a file puts   
xfdf.to_xfdf

# write xfdf file
xfdf.save_to('path/to/file.xfdf')
于 2012-06-27T00:01:53.010 回答