Difference between revisions of "Java Notes"
From Simson Garfinkel
Jump to navigationJump to search
m (New page: ==Eclipse vs. NetBeans== I really like the GUI builder in NetBeans, but have stopped using it because: * The code isn't portable (it uses classes that are only in Java 1.6, not in Java 1.5...) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 8: | Line 8: | ||
* Download Eclipse from http://eclipse.org/ | * Download Eclipse from http://eclipse.org/ | ||
* Add the Subversion plug-in following the [http://subclipse.tigris.org/install.html instructions]. Currently you do this by adding the software provider url http://subclipse.tigris.org/update_1.4.x. | * Add the Subversion plug-in following the [http://subclipse.tigris.org/install.html instructions]. Currently you do this by adding the software provider url http://subclipse.tigris.org/update_1.4.x. | ||
==Cool Java Tools== | |||
* http://www.java-tv.com/2009/06/17/jeliot-a-java-program-visualization-system/ | |||
* [http://commons.apache.org/io/description.html Apache I/O Commons class] | |||
* [[Java Screen Shot Code]] | |||
[[Category:Notes]] |
Latest revision as of 10:32, 17 July 2009
Eclipse vs. NetBeans
I really like the GUI builder in NetBeans, but have stopped using it because:
- The code isn't portable (it uses classes that are only in Java 1.6, not in Java 1.5)
- I don't like the callback structure it creates.
- Everybody else uses Eclipse.
To use Eclipse:
- Download Eclipse from http://eclipse.org/
- Add the Subversion plug-in following the instructions. Currently you do this by adding the software provider url http://subclipse.tigris.org/update_1.4.x.