Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7878509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T03:40:54+00:00 2026-06-03T03:40:54+00:00

there are a few examples for using Anti-Xml to extract information from XML documents,

  • 0

there are a few examples for using Anti-Xml to extract information from XML documents, but none that I could find of using Anti-Xml to create XML documents. Does Anti-Xml support creating documents, or should I use another library for this (which one?). Does anyone have an example of creating an XML document with Anti-Xml?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T03:40:56+00:00Added an answer on June 3, 2026 at 3:40 am

    Yes, you can build (and serialize) XML documents:

    import com.codecommit.antixml._
    
    val doc = Elem(None, "doc", Attributes(), Map(), Group(
      Elem(None, "foo", Attributes("id" -> "bar"), Map(), Group(Text("baz")))
    ))
    
    val writer = new java.io.StringWriter
    val serializer = new XMLSerializer("UTF-8", true)
    
    serializer.serializeDocument(doc, writer)
    

    You can also use Anti-XML’s zippers to do some interesting editing tricks:

    val foos = doc \ "foo"
    val newFoo = foo.head.copy(children = Group(Text("new text!")))
    val newDoc = foos.updated(0, newFoo).unselect
    

    Now newDoc contains the edited document:

    scala> newDoc.toString
    res1: String = <doc><foo id="bar">new text!</foo></doc>
    

    The Zipper that doc \ "foo" returns is different from a NodeSeq in that it carries information about its context, which allows you to “undo” the selection operation done by \.


    Update in response to ziggystar‘s comment below: if you want something like Scala’s XML literals, you can just use convert on any scala.xml.Elem:

    val test: com.codecommit.antixml.Elem = <test></test>.convert
    

    I’d assumed the question was about programmatic creation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application that's locked down using forms authentication. There are few nightly
I'm trying to call the HtmlTidy library dll from C#. There's a few examples
It looks like there a few working solutions for using custom true type fonts
I know how to use locks in my app, but there still few things
There are a few plugins that I know that after installation they will create
There are a few things that I almost always do when I put a
Quite a few examples I see of using knockout when showing a list of
I am new to Ruby and currently trying a few examples from the Ruby
So I'm sort of a dummy here, I'm using examples from inside a gem,
There are a few threads here at so about this matter but most of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.