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 901 to 920 of 948
- 06-14-2012, 05:35 AM #901
Senior Member
- Join Date
- Apr 2012
- Posts
- 127
- Rep Power
- 0
- 06-17-2012, 05:12 PM #902
Member
- Join Date
- Jun 2012
- Location
- India
- Posts
- 5
- Rep Power
- 0
Re: What are you using to write your code?
I am beginner, Is it ok for me to use Eclipse for coding ?
- 06-19-2012, 11:23 AM #903
Member
- Join Date
- Jun 2012
- Posts
- 6
- Rep Power
- 0
Re: What are you using to write your code?
I think notepad is a good way to write codes its easy to access and simple.
- 06-20-2012, 06:30 AM #904
Java Noob
- Join Date
- Jun 2012
- Posts
- 4
- Rep Power
- 0
Re: What are you using to write your code?
TextPad works fine for me. It is simple, minimalistic, and it gets the job done. I have heard good things about Notepad++ though, so I might try it out one of these days.
- 06-22-2012, 03:13 PM #905
Member
- Join Date
- Jun 2012
- Posts
- 1
- Rep Power
- 0
Re: What are you using to write your code?
Yes.. Initially career started with DrJava and BlueJ editors,then moved to Eclipse for web application development which is easy to work.In college days we had used notepad editor with command prompt as a secondary development for java execution.Working in notepad without any automatic and user prompts is very tough to work.But initially for a java developer the best way to work is notepad where they should be clear with all syntax's specifically.
- 07-25-2012, 12:50 PM #906
Member
- Join Date
- Nov 2011
- Location
- In the country in which my username is real word...
- Posts
- 13
- Rep Power
- 0
Re: What are you using to write your code?
I must agree with you on some of this. It is never good to start using auto-complete straight away, since there is a lot to miss by doing so, however, IDEs can be useful in many other ways.
For example, I've been using Eclipse right from the start, but I've still never used "Generate getters/setters", class templates, etc.
There are many things which an IDE offers that are good features which will not stop you from learning.
In many cases I've used Eclipse's method lists and javadoc, instead of having to go straight to google every time I'd forgotten the parameters of a method or needed to use a new class which I was to use.
Then there are this about renaming stuff. Consider you have a data-class with static variables in it. You need to rename one of them, one which is used everywhere in your code. With Eclipse this can be done by simply renaming the variable at one place, but in NotePad...
So, as a conclusion:
There are a great many features in an IDE that can easily be abused, making it impossible for you to work with something as simple as NotePad, since you don't know your syntax, however, if you use an IDE in a good manner it will be a great tool which will make you learn (and write) much faster.
(Yes, I know this thread might not be here for debates, but I just wanted to get this out.)
- 07-25-2012, 05:05 PM #907
Senior Member
- Join Date
- Apr 2012
- Posts
- 127
- Rep Power
- 0
Re: What are you using to write your code?
Good points Komposten...
I just wanted to add to my original post (and stir the pot a little... hehe) -- that IDE's shield a new programmer from some of the "behind the scenes" stuff... and not always in a good way. For example... with an IDE a new programmer will not learn how to manually compile a program using the jdk on the command line, or in some rare cases of being self-taught, may not even become aware that such a thing exists or that the IDE is actually doing it for them (Yikes!). Or one of the more difficult things I've had troubles with is getting my darn classpaths correctly set at the command line compiler, or actually running a java method from the command line that is part of a larger class in a package, or from a jar. This sometimes can be admittedly frustrating lol.
Another big drawback to using an IDE from the get-go is error correction when you have a compilation error or a runtime error. The IDE's provide you with a ton of visual clues that are all too easy to become dependent on. When a runtime error occurs and the programmer is outside the comfort of an IDE, it will likely be much more difficult for them to diagnose what the problem is because they lack the experience of solving these sort of problems on their own using just the basic exception outputs or stack traces from the program.
I'm a self-taught java programmer, and quite a newbie at that still by my own regards. The first two books I read to teach myself java always started out with the command line jdk compiler and jre, as well as insisted on starting out with using a basic text editor (notepad, notepad++, VIM, etc... anything that didn't format the text and wasn't an IDE). Now my third book i'm reading starts you off in an IDE using NetBeans and doesn't go over how to do the same compilation processes from the command line, and basically glosses over what the IDE is doing for you in the background. A crime in my opinion because someone who truly is a newbie with no prior experience really wouldn't grasp the behind-the-scenes aspects. As far as syntax goes, I think its far better to get frustrated over your program not compiling due to a syntax error (left out a semi-colon for example) when your a newbie which would force you to interpret the jdk's error output and find/correct the problem on your own than it is for an IDE to just do it for you when you are learning. I think this will reinforce the importance of syntax a lot faster than just glossing over it.
I'm not advocating that seasoned pro's who are writing large programs use a text editor -- i'm advocating that they know how to use a text editor in the event that their IDE isn't available - and that all newbies start with a text editor to learn from before progressing to an IDE.
Just my two-cents :-P (I love stiring debate -- especially about text vs IDE editors... hehe).
- 09-15-2012, 08:47 PM #908
Member
- Join Date
- Sep 2012
- Posts
- 70
- Rep Power
- 0
Re: What are you using to write your code?
figured eclipse would be on top. Although netbeans is way up there.
- 09-21-2012, 08:51 PM #909
Member
- Join Date
- Sep 2012
- Location
- Hyderabad
- Posts
- 2
- Rep Power
- 0
Re: What are you using to write your code?
According to My opinion iam using Eclipse
- 09-24-2012, 07:41 AM #910
Member
- Join Date
- Sep 2012
- Posts
- 1
- Rep Power
- 0
Re: What are you using to write your code?
Notepad ++
eclipse
Netbeans
- 09-24-2012, 11:55 PM #911
Member
- Join Date
- Dec 2011
- Posts
- 10
- Rep Power
- 0
Re: What are you using to write your code?
I used NetBeans for several months until I realized how much better Eclipse is.
- 10-02-2012, 08:13 PM #912
Member
- Join Date
- Sep 2012
- Location
- Maryland, USA
- Posts
- 14
- Rep Power
- 0
Re: What are you using to write your code?
I am using NetBeans simply because that is what the class that I am taking is using. I figure I have enough to do to learn the language without the added difficulty of converting what the class is doing into what I would be doing using either a plain editor or another IDE. Also, I guess that I have been spoiled by using the Microsoft IDEs in the past for C and Visual Basic. I still also have nightmares about the short time the spent doing C on Unix with the "joy" of makefiles.
- 10-14-2012, 01:24 PM #913
Member
- Join Date
- Oct 2012
- Posts
- 1
- Rep Power
- 0
Re: What are you using to write your code?
that depends on.. for a small task I use notepad++ on win or gedit on lin. the main point is that the editor supports a highlighting function. For a project I use eclipse.
- 10-15-2012, 10:39 AM #914
Member
- Join Date
- Sep 2012
- Posts
- 11
- Rep Power
- 0
Re: What are you using to write your code?
Sublime.
- 10-23-2012, 12:49 AM #915
Member
- Join Date
- Oct 2012
- Posts
- 2
- Rep Power
- 0
Re: What are you using to write your code?
I'm using Eclipse. I think It's very useful,customizable. It have a lot of useful plugins. (Subclipse, Window Builder, CheckStyle etc.) When I start to coding Java, I used NetBeans IDE but now I'm happy with Eclipse. :)
- 11-10-2012, 09:03 AM #916
Member
- Join Date
- Nov 2012
- Location
- Earth
- Posts
- 2
- Rep Power
- 0
Re: What are you using to write your code?
I'm using BlueJ because I used it when I first learnt Java and I'm very comfortable with it...
- 11-12-2012, 11:50 AM #917
Member
- Join Date
- Sep 2012
- Posts
- 11
- Rep Power
- 0
Re: What are you using to write your code?
i have switched to Eclipse for our project work , much more trouble then with sublime and slower is my impression after 1 week of use.
Hopefully it will get better.
- 11-14-2012, 12:42 PM #918
Member
- Join Date
- Nov 2012
- Posts
- 69
- Rep Power
- 0
Re: What are you using to write your code?
Personally I use Geany and Scite. Didn`t saw them here. They are for linux.
- 11-17-2012, 03:08 AM #919
Member
- Join Date
- Nov 2012
- Posts
- 28
- Rep Power
- 0
Re: What are you using to write your code?
I personally use Jgrasp, and this is because we started programming at school using that, so i am used to it.
- 11-21-2012, 04:20 PM #920
Member
- Join Date
- Nov 2012
- Posts
- 7
- Rep Power
- 0
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