 |
 |
 |
 |
| Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum. |

21st September 2008, 07:06 AM
|
 |
Registered User
|
|
Join Date: Jul 2008
Posts: 344

|
|
|
i want a very light weight IDE for Java programmin
hai guys,
i am looking for very simple Ide for java programming. eclipse is toooo complex
thanks in advance
__________________
:) ~~~~PrOuDtoBeALiNuxUsEr~~~~ :)
|

21st September 2008, 07:22 AM
|
|
Registered User
|
|
Join Date: Jan 2005
Posts: 5,002

|
|
|
Well, IDE and light weight are usually mutually exclusive.
There is tomcat which has some eclispe plugins.
tomcat is very complex and is matained by a small army of topcat coders.
This is because you need a coding platform before you can code the new code for the apps. dah!
SJ
__________________
Do the Math
|

21st September 2008, 07:28 AM
|
 |
Registered User
|
|
Join Date: Jul 2008
Posts: 344

|
|
you mean tomcat is more complex than eclipse
__________________
:) ~~~~PrOuDtoBeALiNuxUsEr~~~~ :)
|

21st September 2008, 08:16 AM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 414

|
|
|
I'm no java expert but I thought you *needed* a full-featured IDE to handle all the java boilerplate you need to get anything done in that language.
BTW, While eclipse is a memory-hog, it's not complex to learn (the eclipse web-sites / docs make it look more complex than it actually is. I use it for python-coding). Netbeans is also excellent (for java programming anyway), so I've heard.
Tomcat is a server container for delivering network apps. I don't see how this relates to IDEs at all (althought my only experience with it is I installed and used it once).
|

21st September 2008, 08:30 AM
|
 |
Registered User
|
|
Join Date: Jul 2008
Posts: 344

|
|
the thing is the codes i did in jpadpro (windows) cannot be run in eclipse unless i code them from the begining. this is due to the project and workspace features.
this makes me tired of eclipse
__________________
:) ~~~~PrOuDtoBeALiNuxUsEr~~~~ :)
|

21st September 2008, 08:38 AM
|
|
Registered User
|
|
Join Date: Jan 2005
Posts: 5,002

|
|
You may be correct about tomcat.
I thoht the 3rd part was the ide but that is probaly simpler as in your fav test editor and versioning commads which could be Eclispe or netbeans type things.
tomcat is admin, distrobution, and runtime environment.
So why not just code really good C++ programs?
Sj
__________________
Do the Math
|

21st September 2008, 09:01 AM
|
 |
Registered User
|
|
Join Date: Jul 2008
Posts: 344

|
|
actually in hour class its java now. so whats the point in using c++? 
jpadpro works fine in windows. i am looking for a equivalent for that
__________________
:) ~~~~PrOuDtoBeALiNuxUsEr~~~~ :)
|

21st September 2008, 02:30 PM
|
 |
Registered User
|
|
Join Date: Jul 2008
Posts: 344

|
|
|
or can i compile and run java progs in command prompt??
__________________
:) ~~~~PrOuDtoBeALiNuxUsEr~~~~ :)
|

21st September 2008, 05:18 PM
|
 |
Registered User
|
|
Join Date: Nov 2006
Location: Detroit
Posts: 4,617

|
|
Quote:
|
Originally Posted by arshad3m
or can i compile and run java progs in command prompt??
|
Of course. Have you read the man pages for javac and java? If not, do so.
For a light but powerful IDE, try Emacs + JDEE.
Screenshot is here .
|

21st September 2008, 05:33 PM
|
 |
Registered User
|
|
Join Date: Jul 2008
Posts: 344

|
|
Quote:
|
Originally Posted by RupertPupkin
Of course. Have you read the man pages for javac and java? If not, do so.
For a light but powerful IDE, try Emacs + JDEE.
Screenshot is here .
|
hallo,
what is the 'man pages for java and javac'? 
can you please give me the linsk??
thanks in advance
__________________
:) ~~~~PrOuDtoBeALiNuxUsEr~~~~ :)
|

25th September 2008, 03:01 PM
|
|
Registered User
|
|
Join Date: Feb 2008
Location: HK
Age: 31
Posts: 196

|
|
|
yea,got same question here.
How to run java class with libraries using java (or javac)? I am using eclipse now and I hit memory outta heap error so I couldn't continue with my project... trouble shooting as whether it's eclipse that running out too much of memory or is it just too much memory used in my codes.
Tried java -cp class name (and various other combination) and dun work
|

25th September 2008, 04:02 PM
|
|
Registered User
|
|
Join Date: Feb 2008
Location: HK
Age: 31
Posts: 196

|
|
really need some help TT
Quote:
[maoting@maoting Test]$ javac -cp /home/maoting/workspace/lib/ext/j3dcore.jar:/home/maoting/workspace/lib/ext/j3dutils.jar:/home/maoting/workspace/lib/vecmath/build/debug/lib/ext/vecmath.jar /home/maoting/workspace/Java/src/Test/Test.java
[maoting@maoting Test]$ java Test
Exception in thread "main" java.lang.NoClassDefFoundError: Test (wrong name: Test/Test)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java :620)
at java.security.SecureClassLoader.defineClass(Secure ClassLoader.java:124)
at java.net.URLClassLoader.defineClass(URLClassLoader .java:260)
at java.net.URLClassLoader.access$000(URLClassLoader. java:56)
at java.net.URLClassLoader$1.run(URLClassLoader.java: 195)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.j ava:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:3 06)
at sun.misc.Launcher$AppClassLoader.loadClass(Launche r.java:276)
at java.lang.ClassLoader.loadClass(ClassLoader.java:2 51)
at java.lang.ClassLoader.loadClassInternal(ClassLoade r.java:319)
[maoting@maoting Test]$ java /home/maoting/workspace/Java/src/Test/Test
Exception in thread "main" java.lang.NoClassDefFoundError: /home/maoting/workspace/Java/src/Test/Test
Caused by: java.lang.ClassNotFoundException: .home.maoting.workspace.Java.src.Test.Test
at java.net.URLClassLoader$1.run(URLClassLoader.java: 200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.j ava:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:3 06)
at sun.misc.Launcher$AppClassLoader.loadClass(Launche r.java:276)
at java.lang.ClassLoader.loadClass(ClassLoader.java:2 51)
at java.lang.ClassLoader.loadClassInternal(ClassLoade r.java:319)
[maoting@maoting Test]$
|
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Current GMT-time: 14:46 (Wednesday, 22-05-2013)
|
|
 |
 |
 |
 |
|
|