From: Kevin B. <kb...@ca...> - 2002-03-22 23:41:53
|
Hmm. I'm not quite sure how you managed it, but I imagine at some point you had Impi in a file named impi.java? You may also not be using Jython 2.1? Windows' case-insensitive filesystem is unfriendly to Java's case-sensitive class names & one-class-one-file philosophy. I'd suggest doing a clean build of all your Java code related to Impi. This will probably identify some class that is using 'impi' instead of 'Impi'. 'grep' may also do it. kb Edward Povazan wrote: >Hello All, > >I've look in the archives, but only see questions, and no answers relating >to this. >I have a folder hierarchy impi/core/ and a .class file impi/core/Impi.class > >when I 'from impi.core import *' from another module, I get >'java.lang.NoClassDefFoundError: java.lang.NoClassDefFoundError: >impi/core/impi (wrong name: impi/core/Impi)' > >Is there a quick fix for this? > >Thanks >-Ed > > >_______________________________________________ >Jython-users mailing list >Jyt...@li... >https://lists.sourceforge.net/lists/listinfo/jython-users > |