Anonymous User
java errors? May 21, 2007 08:21AM |
java.lang.UnsupportedClassVersionError: javax/vecmath/Tuple3d (Unsupported major.minor version 49.0) at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(Unknown Source) at java.security.SecureClassLoader.defineClass(Unknown Source) at java.net.URLClassLoader.defineClass(Unknown Source) at java.net.URLClassLoader.access$100(Unknown Source) 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 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) at org.reprap.Main.createAndShowGUI(Main.java:313) at org.reprap.Main.access$24(Main.java:77) at org.reprap.Main$23.run(Main.java:574) at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source)
Re: java errors? May 21, 2007 02:30PM |
Admin Registered: 15 years ago Posts: 476 |
Anonymous User
Re: java errors? May 21, 2007 02:37PM |
Re: java errors? May 21, 2007 03:50PM |
Admin Registered: 15 years ago Posts: 476 |
Anonymous User
Re: java errors? May 21, 2007 03:58PM |
Anonymous User
Re: java errors? May 21, 2007 04:50PM |
Quote
Subclipse: version control under Java
All of RepRap is maintained under the Subversion version-control system. This allows easy updating of source code, and also roll-back to previous versions should that be needed. The section of Subversion that works in Eclipse is called Subclipse. It installs itself from within Eclipse, and instructions for doing that are available from this link.
follow the instructions on that Subclipse webpage, then close eclipse.
Once Subclipse 1.0.x (Eclipse 3.0/3.1)
You will then need to install Mylar,
Name: Mylar
URL: [download.eclipse.org]
and then the mylar update
Name: Mylar update
URL: [download.eclipse.org]
you can now install subclipse
Name: Subclipse 1.2.x (Eclipse 3.2+)
URL: [subclipse.tigris.org]
Note that if you are behind a firewall or use an HTTP proxy server you may need to configure Eclipse so that it knows about that before you install Subclipse. In Eclipse go to the menu: Window -> Preferences -> Install/update and enter the location of the HTTP proxy machine on your network and its port number (usually 3128, but check with your network manager if you are not sure about this). If you are a private individual on broadband you should have a direct connection and this won't be needed.
Quote
3D graphics in Java
The host RepRap software uses three-dimensional graphics to allow you to interact with the RepRap machine, so you need a copy of Java3D to permit that to work. Click on that link and download the appropraite file for your machine; for Windows on a PC that file will be called java3d-1_4_0_01-windows-i586.zip. (not version 1.5.0 will not work) Then, install.
Now you can run the RepRap software. As you, not the superuser, open Eclipse, open the RepRap project, go to src -> org.reprap and right-mouse-click on Main.java. Select Run as -> Java application. This should open a window that looks like this:
Re: java errors? May 22, 2007 11:41AM |
Admin Registered: 15 years ago Posts: 476 |
Anonymous User
Re: java errors? May 22, 2007 12:01PM |