Kann XML weitere XMLs inkludieren? Oder kann es Java?

Status
Nicht offen für weitere Antworten.

alex999

Mitglied
Hallo,

mal ne Frage:
Gibt es einen Mechanismus, der es erlaubt, innerhalb einer XML Datei eine andere XML Datei zu includen?

Oder gibt es eine Java Klasse, die solche includes anhand von best. Schlüsselwörtern bewerkstelligen kann - sozusagen out of the box?


Danke und schönes WoEnde,
Hans
 

foobar

Top Contributor
Du kannst in XML über Entities andere XML-Files einbinden. Guck mal bei selfhtml nach.
 

alex999

Mitglied
Hi,

ja danke, dass mit den Entities hab ich gesehen.

Aber das ist nicht genau das was ich wollte. Ich wollte einfach eine "simple" Textersetzung:

Code:
<hauptxml>
   <include src="inc.xml"/>
[...]
</hauptxml>

Code:
<incxml>
   <einriesenhaufenantags/>
[...]
</incxml>


Und das Ergebnis (aus Sicht einer XML-Lesenden Java Klasse, zB Castor):
Code:
<hauptxml>
   <incxml>
      <einriesenhaufenantags/>
   </incxml>
[...]
</hauptxml>

Aber ich denke das funktioniert so nicht. Bzw. hab ich für sowas nichts gefunden. Das man das ganze zu Fuss machen kann, ist mir klar. Aber genau das wollte ich vermeiden.

Schöne Grüße,
Bern
 

clemson

Bekanntes Mitglied
mittels jdom sollte das ganze folgendermaßen funktionieren:

XMLReplacer.java
Code:
package org.javaforum.y06.sept.xml;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;

import org.jdom.Document;
import org.jdom.Element;
import org.jdom.JDOMException;
import org.jdom.Parent;
import org.jdom.input.SAXBuilder;
import org.jdom.output.Format;
import org.jdom.output.XMLOutputter;

public class XMLReplacer
{

	/**
	 * Test the XML Replacer
	 * @param args
	 * @throws IOException
	 * @throws JDOMException
	 */
	public static void main(String[] args) throws IOException, JDOMException
	{
		XMLReplacer xmlReplacer = new XMLReplacer();

		InputStream inStream = XMLReplacer.class.getResourceAsStream("main.xml");
		Document document = xmlReplacer.buildXML(inStream);

		printXML(document);
		xmlReplacer.substituteDocument(document);
		printXML(document);

	}

	private static void printXML(Document document) throws IOException
	{
		printXML(document.getRootElement());
	}

	private static void printXML(Element element) throws IOException
	{
		XMLOutputter outputter = new XMLOutputter(Format.getPrettyFormat());
		outputter.output(element, System.out);
		System.out.println();
		System.out.println("########");
	}

	/**
	 * Build a Document from a file
	 * @param inStream InputStream of the file
	 * @return Document
	 * @throws JDOMException
	 * @throws IOException
	 */
	public Document buildXML(InputStream inStream) throws JDOMException, IOException
	{
		SAXBuilder builder = new SAXBuilder(false);
		return builder.build(inStream);
	}

	/**
	 * Build a Document from a file
	 * @param path Path to the file
	 * @return Document
	 * @throws JDOMException
	 * @throws IOException
	 */
	public Document buildXML(String path) throws JDOMException, IOException
	{
		SAXBuilder builder = new SAXBuilder(false);
		File xmlFile = new File(path);
		return builder.build(xmlFile);
	}

	/**
	 * Builds an xml and returns the RootElement
	 * @param name Name of the xml file
	 * @return RootElement
	 * @throws IOException
	 * @throws JDOMException
	 */
	public Element buildXMLAsElement(String name) throws JDOMException, IOException
	{
		InputStream inputStream = XMLReplacer.class.getResourceAsStream(name);
		return buildXML(inputStream).getRootElement();
	}

	/**
	 * Substitutes all <include> elements in an given Document
	 * @param document Document, whichs <include> elements shall be substituted
	 * @throws JDOMException
	 * @throws IOException
	 */
	@SuppressWarnings("unchecked")
	public void substituteDocument(Document document) throws JDOMException, IOException
	{
		// get the root element of the document
		Element rootElement = document.getRootElement();

		// get all childrens, which identify an element to substitute (=
		// <include>), as an array
		List<Element> includeElements = rootElement.getChildren("include");
		int size = includeElements.size();
		Element[] elementArray = new Element[size];
		includeElements.toArray(elementArray);

		// iterate over all <inlcude> elements
		for (int i = 0; i < size; i++)
		{
			// get the include element from the list, and get its Parent and
			// the Element of the parent
			Element includeElement = elementArray[i];
			Parent parent = includeElement.getParent();
			Element parentElement = includeElement.getParentElement();
			// get the index of the <include> element
			int includeElementIndex = parent.indexOf(includeElement);

			// get the name of the file, which shall be included
			String srcValue = includeElement.getAttributeValue("src");
			// get the content of the to-included file as Element
			Element elementToInclude = buildXMLAsElement(srcValue);

			// detach the <include> element, and insert the to include element
			// at the given index
			includeElement.detach();
			parentElement.addContent(includeElementIndex, elementToInclude.detach());
		}

	}
}

main.xml
Code:
<hauptxml>
	<test />
	<include src="inc.xml" />
	<include src="inc.xml" />
	<test />
</hauptxml>

inc.xml
Code:
<incxml>
	<einriesenhaufenantags />
</incxml>

Ausgabe
Code:
<hauptxml>
  <test />
  <include src="inc.xml" />
  <include src="inc.xml" />
  <test />
</hauptxml>

########

<hauptxml>
  <test />
  <incxml>
    <einriesenhaufenantags />
  </incxml>
  <incxml>
    <einriesenhaufenantags />
  </incxml>
  <test />
</hauptxml>
 
Status
Nicht offen für weitere Antworten.

Ähnliche Java Themen

Neue Themen


Oben