- xml file: searching for text value
Hi,I want to search in my xml file for a value of text element(= the value). And then processing the node value. //Traversalling recursively in the tree private static void processNodeRecursively (Node node, String rule) { if((node.getNodeValue()).equals(rule)) {//some code for processing the ...
- Xerces, W3 XML Schema validation and xs:include/xs:import
HiI'm trying to validate some XML files with use of this code (short version):static final String JAXP_SCHEMA_LANGUAGE ="http://java.sun.com/xml/jaxp/properties/schemaLanguage";static final String W3C_XML_SCHEMA = "http://www.w3.org/2001/XMLSchema";static final String JAXP_SCHEMA_SOURCE ...
- Writing a string to a file on a web Server
Hi all,i need to write a string of length say 200 chars in a file located on my local apache web server.I have an applet that registers username and password +some other information in a string.So i need to write this string to a new file every time a new user logs in with a new file name.I ...
- working method
HiI'm evaluating mapping tools, like toplink. Is there any method I can use in my evaluation? I'm thinking something like the XP-method?I'm going to measure performence an functionallity and I will probobly use JUnit and JUnit performence as my tools.thanx...
- wondering about crossreferences (GC)
I was just wondering about something. Some months ago I developed a class which built a tree structure for me. This tree consisted of nodes which had a reference to the parent. So you can image that the constructor would look like:public MyNode(MyNode myParent){ parent = myParent;}A week ago I ...
- windowsxp javac and setting paths.
how do you permanently set the javac path environment for windows?...