generate « document « Java XML Q&A

Home
Java XML Q&A
1.convert
2.Development
3.document
4.dom
5.dom4j
6.dtd
7.element
8.jaxb
9.jaxp
10.jdom
11.jsoup
12.namespace
13.Node
14.parse
15.parser
16.pdf
17.sax
18.schema
19.stax
20.tag
21.transform
22.Validation
23.xalan
24.xmlbeans
25.xpath
26.xsd
27.xslt
28.xstream
Java XML Q&A » document » generate 

1. Generating Java Classes dynamically from an XML document    stackoverflow.com

Consider this scenario: I've an XML file called person.xml with the following data in it.

<person>
    <name>MrFoo</name>
    <age>28</age>
</person>
If I want to read this XML into a ...

2. Is there a library capable of generating XSL-FO from Office XML documents like DOCX, XLSX?    stackoverflow.com

Does anyone know of a library that is capable of generating XSL-FO from a Microsoft Office Open XML file, such as a Word DOCX or an Excel XLSX? Given that these Office ...

3. Java: How to speed up the xpath string generation on a given w3c dom document?    stackoverflow.com

I have the following method which takes a org.w3c.dom.Document and generate an absolute xpath string. I notice it takes long time to go through hundreds of elements on a page. Is ...

4. generating XML document using Java    coderanch.com

Ulf, I have one more problem now . After generating and populating the XML, from other part of my program I need to read the text in each element node. and i tried using the below code NodeList var1 = doc.getElementsByTagName("optionsIndex"); Element ele1 = (Element)var1.item(0); NodeList text1 = ele1.getChildNodes();// here String optionsIndexString = ((Node)text1.item(0)).getNodeValue(); But on the line marked 'here' I ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.