Method: ArticleTools::ArticleSerializer#write_to_xml_string
- Defined in:
- lib/sentra/opr.rb
#write_to_xml_string(article) ⇒ Object
59 60 61 62 63 64 65 |
# File 'lib/sentra/opr.rb', line 59 def write_to_xml_string article out = java.io.ByteArrayOutputStream.new() @simpleFormat.format(out, article) out.close() out.toString("UTF-8") end |