View Poll Results: What are you using to write your code?
- Voters
- 4172. You may not vote on this poll
-
Wordpad
28 0.67% -
Notepad
219 5.25% -
Emacs
16 0.38% -
Gedit
37 0.89% -
JGrasp
114 2.73% -
Visual J#
3 0.07% -
Netbeans
1,003 24.04% -
IntelliJIDEA
48 1.15% -
Eclipse
1,660 39.79% -
JBuilder
17 0.41% -
BlueJ
214 5.13% -
DrJava
91 2.18% -
Adobe Dreamweaver
9 0.22% -
BBBEdit
0 0% -
JIPE
1 0.02% -
GEL
1 0.02% -
Vi/Vim
37 0.89% -
JCreator
241 5.78% -
TextPad
120 2.88% -
Other
143 3.43% -
Notepad++
170 4.07%
Results 201 to 220 of 949
- 09-23-2008, 01:25 AM #201
Member
- Join Date
- Sep 2008
- Posts
- 34
- Rep Power
- 0
- 09-23-2008, 03:38 AM #202
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
- 09-23-2008, 12:40 PM #203
Member
- Join Date
- Aug 2008
- Posts
- 12
- Rep Power
- 0
netbeans is good for now, before it i was using eclipse.
this is not possible to compare every IDE but i remember when i started to use netbeans i thought and compare it with eclipse and found some good new features. this was sound good but when after 6 months i again used eclipse those features are available in it also. so be positive with all and use whatever is good in a particular time.
- 09-23-2008, 10:28 PM #204
Member
- Join Date
- Sep 2008
- Posts
- 34
- Rep Power
- 0
- 09-24-2008, 11:15 AM #205
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
- 09-27-2008, 12:45 PM #206
Eclipse or NetBeans on creating GUIs? Which do you prefer?
- 09-27-2008, 03:55 PM #207
Member
- Join Date
- Sep 2008
- Posts
- 34
- Rep Power
- 0
I wouldn't use an IDE mainly because they might add unnecessary code just like programs that deal with web design.
- 09-28-2008, 12:05 AM #208
Senior Member
- Join Date
- Jun 2008
- Posts
- 2,366
- Rep Power
- 7
Then good luck with that.
A programming IDE is not a web design tool. If you use it to generate things it may generate it a bit more archaicly or rigidly than you would do it by hand (mainly only when generating GUI code with it), but 99.9999999% of the time the IDE is not generating anything (unlike web design tools which generate everything. An IDE's best uses are it's code completion (single method calls so you don't have to type the entire name, and also, usually, you can get a list of possible methods to choose from), it's continuous syntax proofing, it's ability to automatically package (and possibly deploy) the application, its compilation and running ability, allowing easy classpath configuration (as long as you stay within the IDE).
It has almost nothing to do with code generation, except for specific features that you do not have to use. Usually "code cleanup" and "code start" type things, i.e. generating stubs for inherited abstract methods, generating serialVersionIDs, fixing indentation (to a configurable style), adding braces around blocks.
Nothing to run away from or be scared of.
- 09-28-2008, 12:26 AM #209
Member
- Join Date
- Sep 2008
- Posts
- 34
- Rep Power
- 0
The question I replied to was dealing with GUI applications. That is why I said it might add unnecessary. True, for programs designed to run in a terminal program (such as Command prompt, which emulates DOS) IDEs probably won't add the same unnecessary code as it could with GUI applications. that syntax proofing could be a benefit, but I would still suggest hard coding a GUI instead of having the IDE do it. IDE are just fine for compiling and running though (tried one out but it did not work out as well as a text editor and a terminal application).
- 09-28-2008, 07:37 AM #210
A couple of ...
Since I'm a newcomer and still not able to post links and images I've included the Google search words.
When I started on this I used MED (Former Mr Ed) - google search words "med editor"
Then later xEmacs - but you've already got Emacs listed
Then jEdit : google search word "jedit"
Now Netbeans - This one you know :)
Many thanks
flywheel
- 09-28-2008, 07:45 AM #211
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
- 09-28-2008, 07:46 AM #212
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
- 09-28-2008, 08:32 AM #213
Senior Member
- Join Date
- Jun 2008
- Posts
- 2,366
- Rep Power
- 7
- 09-28-2008, 08:35 AM #214
Senior Member
- Join Date
- Jun 2008
- Posts
- 2,366
- Rep Power
- 7
Then all I can say is, you didn't give it enought time and effort. IDEs are a great boost to productivity.
It is best to learn the language, and everything that goes with it, with a simple text editor (preferably one with at least some syntax highlighting) and the command line for compiling, packaging, deploying, and running, but once you know the language and the things that go with it, it really is time to move onto a full-fledged IDE.
And, no, I would never allow one to generate more than the simplest of GUI's though.
- 09-28-2008, 09:53 AM #215
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Well said my pal. Without working on an IDE you never achieve to grate level in an application, you must use it.
As you said at the start better to use a simple environment to write code. Actually I recommended command prompt and the Notepad. I start to learn Java in the same way. Later on you must move to an IDE. Some people are start there work on with an IDE, and I don't think it's a bad idea too, but have to learn how to deal with how to use it in effective way.
- 09-28-2008, 10:37 AM #216
My vote goes to NetBeans. Coming from a background of Visal FoxPro, I found NetBeans easy to use and configure, and the autocomplete / code insertion features were intuitive enough to give me a quick start in Java.
Later I switched to Notepad for a short time, to allow myself to get familiar with what NB had been doing (semi)automatically for me.
I know it's just me, but I just haven't been able to figure out Eclipse :( Every time I open it, I look around, read a bit of help, and go back to NB.
db
- 09-28-2008, 10:47 AM #217
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Here comes another NetBeans lover. ;)
- 09-28-2008, 12:47 PM #218
I love everything except the GUI generator. Myabe some users become expert in using it, but I find it tons easier to just write the swing code.Here comes another NetBeans lover.
db
- 09-28-2008, 04:34 PM #219
Member
- Join Date
- Sep 2008
- Posts
- 34
- Rep Power
- 0
I guess that is where we differ in opinion. The IDEs that I used were Xcode (Mac only) and BlueJ and neither one worked out well, unless I was in the text editor view, maybe because I am more used to working with a text editor back when I was strictly doing hobbyist web design. Even if I knew the language very well, I would still use a text editor and a terminal application, in case I had to work on the program on a different computer (I don't believe Xcode can save entire projects to such formats that can be cross-platform). True, there may be better IDEs to use, but there are not very many IDEs that are packaged as JAR files themselves (at least that I could find), so I can carry a cross-platform copy of the application on a USB stick. In brief detail, I don't see the point of using an IDE, even if it may help productivity, if the best part of the IDE is its own text editor. Now, I do respect your opinion but people can be just as productive without an IDE when making programs because you can already do pretty much anything without using one. At least, we agree somewhat on GUI applications.
- 09-28-2008, 04:45 PM #220
Senior Member
- Join Date
- Jun 2008
- Posts
- 2,366
- Rep Power
- 7
Similar Threads
-
how to write onto a file
By mirage_87 in forum New To JavaReplies: 6Last Post: 09-08-2009, 03:54 PM -
a simple code (cldc or midp) to write a text file ouside of the application package
By sina in forum CLDC and MIDPReplies: 3Last Post: 12-12-2008, 12:12 PM -
How to write your own Comparator
By Java Tip in forum java.langReplies: 0Last Post: 04-15-2008, 07:38 PM -
About bean:write
By yuchuang in forum Web FrameworksReplies: 1Last Post: 04-30-2007, 03:31 PM -
Generating Code Automatically Using Custom code Template In Eclipse
By JavaForums in forum EclipseReplies: 1Last Post: 04-26-2007, 03:52 PM


18Likes
LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks