| 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
|
|
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
|
|
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.
|
 |
 |
|
|
subject: beginners guide to using SAX
|
|
|