I'm trying to convert from HTML to PDF.
but when I run the code it gives me the following error:
what's the problem?Code:java.lang.NoClassDefFoundError: org/apache/avalon/framework
/configuration/ConfigurationException
thanks
Printable View
I'm trying to convert from HTML to PDF.
but when I run the code it gives me the following error:
what's the problem?Code:java.lang.NoClassDefFoundError: org/apache/avalon/framework
/configuration/ConfigurationException
thanks
I think some library file which has class (org/apache/avalon/framework
/configuration/ConfigurationException) is missing
your missing the avalonframework jar. go to DocJar: Search Open Source Java API and put in the exception. it'll search and provide you with a list of downloadable jars containing the missing files. or look locally and find the jar and add it to your classpath.
yes, i fixed it
you were right I was missing the avalonframework
thanks a lot