A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
JavaRanch
»
Java Forums
»
Engineering
»
XML and Related Technologies
Author
New to Java. Can you help with whit this (XML) ?
Filoche Moe
Greenhorn
Joined: Feb 10, 2005
Posts: 1
posted
Feb 10, 2005 18:33:00
0
Hi all.
I'm new to Java (need to do something for my master) and I'm trying to learn how to manipulate XML.
Here's my code :
DOMParser parser;
Document doc;//Document element
Element root;//Root element
public int InitXML (
String
path)
{
parser = new DOMParser();
try
{
parser.parse(path);
doc = parser.getDocument();
root = doc.getDocumentElement();
}
catch (Exception e)
{
e.printStackTrace(System.err);
System.out.println("XML error in file : " + path );
return 0;
}
return 1; //No error
When using :
parser.parse(path);
I got an error telling me that there whitespace in my shema (I use plain XML, no shema)
Tx for any info that could help me.
Filoche
I agree. Here's the link:
http://ej-technologies/jprofiler
- if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
subject: New to Java. Can you help with whit this (XML) ?
Similar Threads
Parsing of XML
New to XML, need help
How to get an XML field?
Adding an attribute to an element
SAXException within Servlet
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter