show/hide this revision's text 4 fixed spelling, grammar

I am getting a "no class definition found" exception while trying to run my application on windows(it Windows (it runs fine on os x)OS X). The classes jvm the JVM is complaining about are my classes (no third party jars required). When i I unzip the files inside the jar, all files are present, including the once jvm ones the JVMm is complaining about.

The jar is created using the following task:

<target name="jar" depends="">
<jar destfile="build/app.jar" > 
  <manifest>
    <attribute name="Built-By" value="hamza"/>
    <attribute name="Main-Class" value="com.hamza.driver.ui"/>
<attribute name="Class-Path" value="./"/>
  </manifest>
  <fileset dir="build">
    <include name="**/*.class"/>
<include name="**/*.png"/>
<include name="**/*.xpi"/>
<include name="**/*.html"/>
<exclude name="**/*.jar"/>
  </fileset>
</jar>

I can not cannot figure out what is causing the problem. If i I unzip the jar and run the jar from the directory i I unzipped the class to, everything works fine. Soi , I am assuming all the required files are inside the jar.

EDIT: com.hamza.driver.ui is a class in a package called com.hamza.driver which has main.

After the buildi , I get one jar "app.jar" app.jar", and i I run it using "java -jar app.jar" app.jar", which executes fine on os x OS X, but not on windowsWindows.

If i I unzip app.jar in a seperate directory and run "java -jar app.jar" app.jar", it excutes fine.

EDIT 2: exception:

Exception in thread "main" java.lang.NoClassDefFoundError: com/hamza/gui/tr
ansfer/ClipboardTransferHandle
        at com.hamza.driver.ui.main(Unknown Source)
Caused by: java.lang.ClassNotFoundException: com.hamza.gui.transfer.Clipboa
rdTransferHandle
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        ... 1 more

ClipboardTransferHandle .class files are present in the jar.

EDIT 3: imports for the clip board class:

import java.util.logging.Logger;
import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.ClipboardOwner;
import java.awt.datatransfer.Transferable;
import java.awt.datatransfer.StringSelection;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.awt.Toolkit;
import java.io.IOException;

while

While playing with it, i I found that if i I try to declare ClipboardTransferHandle as a static variable in the driver, it works, but every object that is not static is not found. all All the main gui GUI elements are static variables, so the gui GUI is constructed, but other elements are not; everything that is created not static causes noclassdeffound. NoClassDefFound, but if i I declare them static for testing, they work.

show/hide this revision's text 3 added 818 characters in body

I am getting no class definition found exception while trying to run my application on windows(it runs fine on os x). The classes jvm is complaining are my classes (no third party jars required). When i unzip files inside the jar all files are present including the once jvm is complaining about.

jar is created using the following task

<target name="jar" depends="">
<jar destfile="build/app.jar" > 
  <manifest>
    <attribute name="Built-By" value="hamza"/>
    <attribute name="Main-Class" value="com.hamza.driver.ui"/>
<attribute name="Class-Path" value="./"/>
  </manifest>
  <fileset dir="build">
    <include name="**/*.class"/>
<include name="**/*.png"/>
<include name="**/*.xpi"/>
<include name="**/*.html"/>
<exclude name="**/*.jar"/>
  </fileset>
</jar>

I can not figure out what is causing the problem. If i unzip the jar and run the jar from the directory i unzipped the class everything works fine. So i am assuming all the required files are inside the jar.

EDIT: com.hamza.driver.ui is a class in a package called com.hamza.driver which has main.

After the build i get one jar "app.jar" and i run it using "java -jar app.jar" which executes fine on os x but not on windows.

If i unzip app.jar in a seperate directory and run "java -jar app.jar" it excutes fine.

EDIT 2: exception

Exception in thread "main" java.lang.NoClassDefFoundError: com/hamza/gui/tr
ansfer/ClipboardTransferHandle
        at com.hamza.driver.ui.main(Unknown Source)
Caused by: java.lang.ClassNotFoundException: com.hamza.gui.transfer.Clipboa
rdTransferHandle
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        ... 1 more

ClipboardTransferHandle .class files are present in the jar.

EDIT 3: imports for the clip board class

import java.util.logging.Logger;
import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.ClipboardOwner;
import java.awt.datatransfer.Transferable;
import java.awt.datatransfer.StringSelection;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.awt.Toolkit;
import java.io.IOException;

while playing with it, i found that if i try to declare ClipboardTransferHandle as a static variable in the driver it works but every object that is not static is not found. all the main gui elements are static variables so the gui is constructed but other elements are not everything that is created not static causes noclassdeffound. but if i declare them static for testing they work.

show/hide this revision's text 2 added 314 characters in body; added 829 characters in body

I am getting no class definition found exception while trying to run my application on windows(it runs fine on os x). The classes jvm is complaining are my classes (no third party jars required). When i unzip files inside the jar all files are present including the once jvm is complaining about.

jar is created using the following task

<target name="jar" depends="">
<jar destfile="build/app.jar" > 
  <manifest>
    <attribute name="Built-By" value="hamza"/>
    <attribute name="Main-Class" value="com.hamza.driver.ui"/>
<attribute name="Class-Path" value="./"/>
  </manifest>
  <fileset dir="build">
    <include name="**/*.class"/>
<include name="**/*.png"/>
<include name="**/*.xpi"/>
<include name="**/*.html"/>
<exclude name="**/*.jar"/>
  </fileset>
</jar>

I can not figure out what is causing the problem. If i unzip the jar and run the jar from the directory i unzipped the class everything works fine. So i am assuming all the required files are inside the jar.

EDIT: com.hamza.driver.ui is a class in a package called com.hamza.driver which has main.

After the build i get one jar "app.jar" and i run it using "java -jar app.jar" which executes fine on os x but not on windows.

If i unzip app.jar in a seperate directory and run "java -jar app.jar" it excutes fine.

EDIT 2: exception

Exception in thread "main" java.lang.NoClassDefFoundError: com/hamza/gui/tr
ansfer/ClipboardTransferHandle
        at com.hamza.driver.ui.main(Unknown Source)
Caused by: java.lang.ClassNotFoundException: com.hamza.gui.transfer.Clipboa
rdTransferHandle
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        ... 1 more

ClipboardTransferHandle .class files are present in the jar.

show/hide this revision's text 1