473,586 Members | 2,754 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Classpath problems or class missing

1 New Member
I am not sure where to go and post this type of question. I have done hours of online reasearch as well as gone through 3 levels of tech support at my college to try and fix this issue. I just bought a computer with Windows Vista and need Java to create graphs in my economics class. I downloaded it from java.com and checked to make sure it was there. They say it installed fine. When I try to access my graphing tool I get this error "java.lang.NoCl assDefFoundErro r:intellipro/utils/IP2DPlot" Does anyone know what this is or how to fix it? If not how about another place to go and ask questions like this?

Thanks,
mneds
May 9 '07 #1
4 2489
MMcCarthy
14,534 Recognized Expert Moderator MVP
I am moving this question to the Java forum as they may be able to help.

ADMIN
May 9 '07 #2
JosAH
11,448 Recognized Expert MVP
I am not sure where to go and post this type of question. I have done hours of online reasearch as well as gone through 3 levels of tech support at my college to try and fix this issue. I just bought a computer with Windows Vista and need Java to create graphs in my economics class. I downloaded it from java.com and checked to make sure it was there. They say it installed fine. When I try to access my graphing tool I get this error "java.lang.NoCl assDefFoundErro r:intellipro/utils/IP2DPlot" Does anyone know what this is or how to fix it? If not how about another place to go and ask questions like this?

Thanks,
mneds
The intellipro.util s.IP2DPlot class is not a Java core class. I guess you have
a jar installed somewhere that contains this class. Make sure the jar can be
reached by the classpath or store the jar in the JAVA_HOME/lib/ext directory
if the documentation says so. Otherwise make sure your classpath is correct.

kind regards,

Jos
May 9 '07 #3
harishagrawal
1 New Member
Even I faced this problem while accessing a learning application from Thomson Learning. Looks like the application is not able to access the JAR containing the class or the Class file itself is missing.

Exception in thread "Thread-36" java.lang.NoCla ssDefFoundError : intellipro/utils/IP2DPlot
at java.lang.Class .getDeclaredMet hods0(Native Method)
at java.lang.Class .privateGetDecl aredMethods(Unk nown Source)
at java.lang.Class .getDeclaredMet hod(Unknown Source)
at java.awt.Compon ent.isCoalesceE ventsOverriden( Unknown Source)
at java.awt.Compon ent.isCoalesceE ventsOverriden( Unknown Source)
at java.awt.Compon ent.isCoalesceE ventsOverriden( Unknown Source)
at java.awt.Compon ent.access$100( Unknown Source)
at java.awt.Compon ent$2.run(Unkno wn Source)
at java.awt.Compon ent$2.run(Unkno wn Source)
at java.security.A ccessController .doPrivileged(N ative Method)
at java.awt.Compon ent.checkCoales cing(Unknown Source)
at java.awt.Compon ent.<init>(Unkn own Source)
at java.awt.Contai ner.<init>(Unkn own Source)
at java.awt.Panel. <init>(Unknow n Source)
at java.awt.Panel. <init>(Unknow n Source)
at intellipro.util s.IPROPanel.<in it>(IPROPanel.j ava:47)
at intellipro.util s.DandDHolder.< init>(DandDHold er.java:27)
at intellipro.mba. mba_s.s2_2DandD .<init>(s2_2Dan dD.java:25)
at intellipro.mba. mba_s.s2_2.<ini t>(s2_2.java:20 )
at sun.reflect.Nat iveConstructorA ccessorImpl.new Instance0(Nativ e Method)
at sun.reflect.Nat iveConstructorA ccessorImpl.new Instance(Unknow n Source)
at sun.reflect.Del egatingConstruc torAccessorImpl .newInstance(Un known Source)
at java.lang.refle ct.Constructor. newInstance(Unk nown Source)
at java.lang.Class .newInstance0(U nknown Source)
at java.lang.Class .newInstance(Un known Source)
at IPLoader.run(IP Loader.java:35)
at java.lang.Threa d.run(Unknown Source)
Jun 22 '07 #4
JosAH
11,448 Recognized Expert MVP
I think you have the same issue as the OP: check your classpath value.

kind regards,

Jos

ps. I'm going to change the title of this thread; I don't think it's a Java 1.6.01 bug;
the symptoms indicate otherwise.
Jun 22 '07 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

0
3900
by: Murat Tasan | last post by:
okay, i have an odd problem... and maybe it's platform-specific... but i figure give it a shot and ask about it in case someone has seen this. i have an application that is made up of numerous class files. this application at one point loads a class from another company using the command Class.forName(...). when i compile the .java files...
1
6828
by: Ric | last post by:
thx for the help. im having problems with java and jsp. i think im not settup up the enviornmental variables right in w2k advanced tab. im using a wrox book, but the wrox book references a servlet in the classpath environmental variable: CLASSPATH %CATALINA_HOME%\common\lib\servlet.jar i dont see a servlet.jar file in that directory. i...
3
15641
by: Wolfie | last post by:
I'm having a strange problem running a jar file I created using Eclipse. The application works correctly inside the IDE -- it compiles, runs, etc. So I exported it to a jar file and am trying to run it outside the IDE now. It requires an external jar file. I'm running it as: java -classpath path_to_external_jar/extJar.jar -jar...
1
2029
by: Tom | last post by:
How can you figure out exactly where in the classpath a class is located ? For example, assume that my computer has a class "com.MyCompany.MyClass" that is physically located in the jar-file "c:\SomeDirectory\myJarfile.jar" Also assume that this jar-file is included in my classpath environment variable but there are also a lot of other...
3
2290
by: Jim Hargrave | last post by:
I've read that it is possible to compile jython to native code using GCJ. PyLucene uses this approach, they then use SWIG to create a Python wrapper around the natively compiled (java) Lucene. Has this been done before for with jython? Another approach would be to use JPype to call the jython jar directly. My goal is to be able to script...
1
10237
by: Dave Keays | last post by:
I am setting-up an experimental web service using Apache Axis but I'm having problems. AXIS can't find a library that I've verified exists on my computer and that CLASSPATH points to it. I'm using a simple service for testing purposes (1 string IN, 1 string OUT) and I've found where the exception occures but not why. But I've exhausted my...
7
17875
by: dlarsson | last post by:
Okay folks, I thought I was doing something very, very simple, but I cannot seem to get this to work at all. Can anyone identify what I am doing wrong here-? _________________________________ 1. I have a class called "Car" that defines a package with the statement: package com.example.rentalcar;
0
1109
by: gm04030276 | last post by:
i have to learn java for college and im trying to do a programming assignment at home. in class we use a class file called InOut which simplifys input and output but i can't get the compiler to see the classfile this is the compiler output: (the file InOut.class in in /jclass) me@mycomputer:~/docs/programming/JAVA$ javac -verbose -classpath...
4
3326
by: wizard of oz | last post by:
Can you post an example of Connection.connect (String, properties)? My java doc says java.sql.Connection is an interface and doesn't mention a connect method. TIA "Thomas Kellerer" <YQDHXVLMUBXG@spammotel.comwrote in message news:68d9soF2r6qjbU1@mid.individual.net...
10
2121
by: giantfatiguana | last post by:
hey all im a beginner java user and am getting an error relating to the classpath i assume. I have a file JM550b.java which is trying to access the class QTCycle when compiling. QTCycle.java creates a package called jmqt "package jmqt;" and the class is placed in that folder. QTCycle.java compiles successfuly but when i try to compile...
0
8200
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8338
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7954
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
8215
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6610
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5710
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3864
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1448
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1179
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.