aspose file tools
The moose likes Beginning Java and the fly likes beginners guide to using SAX Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "beginners guide to using SAX" Watch "beginners guide to using SAX" New topic
Author

beginners guide to using SAX

lupercal hill
Greenhorn

Joined: Sep 28, 2005
Posts: 9
Im running the following code. using jdk1.5.0_04. Do i need to add anything to use sax. I think i might need a package but i dont know.
I get a no class def found error.

The tutorial Im using is here, the code is below

http://java.sun.com/webservices/jaxp/dist/1.1/docs/tutorial/TOC.html

lupercal hill
Greenhorn

Joined: Sep 28, 2005
Posts: 9
I dont need to do anything to import SAX. The problems I had were due to me using argv instead of args.

public static void main(String argv[])

public static void main(String args[])
Jesper de Jong
Java Cowboy
Bartender

Joined: Aug 16, 2005
Posts: 12921
    
    3

If your code looks exactly like the above, the problem was not in the fact that you used the name "argv" instead of "args". It's just a variable name, it does not cause a ClassNotFoundException.

You probably hadn't your classpath set up correctly.


Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
Jesper de Jong
Java Cowboy
Bartender

Joined: Aug 16, 2005
Posts: 12921
    
    3

Originally posted by Jesper de Jong:
If your code looks exactly like the above, the problem was not in the fact that you used the name "argv" instead of "args". It's just a variable name, it does not cause a NoClassDefFoundError.

You probably hadn't your classpath set up correctly.
Saket Barve
Ranch Hand

Joined: Dec 19, 2002
Posts: 224
Lupercal Hill,

I'm not really sure what you mean by this:


I dont need to do anything to import SAX. The problems I had were due to me using argv instead of args.

public static void main(String argv[])

public static void main(String args[])


I feel the name in the parameter should not matter, as long as you use the same name inside your method body. Of course you wouldn't want to use any of the keywords here.
 
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: beginners guide to using SAX
 
Similar Threads
validate and parse(print to console) an xml document
xml and jsp
Pasing XSD file??
Searching with SAX in xml
Develop UI displaying Tree Using XML