Note that there are some explanatory texts on larger screens.

plurals
  1. PORunning Java Class under Linux terminal
    text
    copied!<p>I'm trying to run a JAVA Class under Linux Mint from the Terminal.</p> <p>My Java class runs nice within any IDE, so I know it's not a code problem, but actually need to run it from the Command Line this time. However, I'm having issues at this point.</p> <p>I used the following command:</p> <pre><code>java -cp . Interface </code></pre> <p>But it happens that it gives me an <code>java.lang.NoClassDefFoundError</code> Exception:</p> <pre><code>Exception in thread "main" java.lang.NoClassDefFoundError: Interface (wrong name: client/Interface) at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:788) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) at java.net.URLClassLoader.defineClass(URLClassLoader.java:447) at java.net.URLClassLoader.access$100(URLClassLoader.java:71) at java.net.URLClassLoader$1.run(URLClassLoader.java:361) at java.net.URLClassLoader$1.run(URLClassLoader.java:355) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:354) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:482) </code></pre> <p>I'm looking to understand all the components that could make it possible to solve this issue and to be able to overcome future problems on the topic.</p> <p>Thank you for your time.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload