Monthly Archives: August 2010

Konfiguration DCHP unter Windows

Der folgende Befehl exportiert die aktuellen Einstellungen vom DHCP-Server “srvdc” in die Datei “dump.txt”. netsh dhcp server \\srvdc dump > dump.txt

Posted in Sonstiges | Leave a comment

XML-Datei erzeugen

import org.w3c.dom.Document; import com.sun.org.apache.xerces.internal.dom.DocumentImpl; import org.w3c.dom.Element; import com.sun.org.apache.xml.internal.serialize.OutputFormat; import com.sun.org.apache.xml.internal.serialize.XMLSerializer; Document doc = new DocumentImpl(); Element root = doc.createElement("xTree"); doc.appendChild(root); Element e = doc.createElement("xTreeFile"); e.setAttribute("label", "label1"); e.setAttribute("type", "type1"); e.setTextContent("abc"); root.appendChild(e); OutputFormat format = new OutputFormat(doc); format.setIndenting(true); format.setIndent(4); String[] str = … Continue reading

Posted in Sonstiges | Leave a comment