Java Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesJava Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here!
  #1  
Old November 12th, 2001, 09:01 PM
worldtouch worldtouch is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2001
Location: Milian, Italy
Posts: 357 worldtouch User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
java editor, which one to download

http://download.cnet.com/downloads/...or&cn=&ca=10001



would u please introduce me java class editor for first java program?

does the one you introduce work together with frontpage?


jennifer.

( I have not written any java program before, need helping hand)
__________________
worldtouch.
an ordinary client of zoneedit.com

Reply With Quote
  #2  
Old November 13th, 2001, 02:47 PM
ACShafer ACShafer is offline
Not A Jedi Yet
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2001
Location: Salt Lake City
Posts: 8 ACShafer User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via AIM to ACShafer
If you use windows, you should write your first java program in notepad.

If you use Linux, then vi or emacs.

When you understand java, then consider Forte or if maybe JDE for Emacs.

I think it is better for you this way, then you aren't married to a tool but understand the principles behind using a tool. It will be easy enough to learn whatever IDE is being used on a job or in a class (visual age, etc.) if you really know what the tool is doing behind the scenes.

What does java have to do with Frontpage? Not sure I understand your question there. Are you talking about applets?

Reply With Quote
  #3  
Old November 27th, 2001, 01:48 PM
matty1stop matty1stop is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2001
Posts: 0 matty1stop User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
TextPad

TextPad is a decent text editor that also has tools for compiling java classes. You can download an evaluation copy for free at URL

Hope this helps,

Matt

Reply With Quote
  #4  
Old December 2nd, 2001, 03:18 PM
sLiPkNoT rUlEz sLiPkNoT rUlEz is offline
PHP Coder
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2001
Location: Ontario
Posts: 66 sLiPkNoT rUlEz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via ICQ to sLiPkNoT rUlEz Send a message via AIM to sLiPkNoT rUlEz Send a message via Yahoo to sLiPkNoT rUlEz
Borland JBuilder Personal Edition, RealJ, and Jext are some pretty good ones.

I just use UltraEdit to edit and javac to compile... You don't NEED an IDE, any text editor (preferably with syntax highlighting) will do very well for coding and then all you have to do is open a command prompt, go to the directory it's in, and type javac <options> myClass.java

http://www.ultraedit.com (not free, but you can *cough* download an "extended license" if you can't afford a legal one)

http://java.sun.com


__________________
Click here and wait. It's a kewl effect, trust me.

Reply With Quote
  #5  
Old December 6th, 2001, 04:20 AM
Pushkin Pushkin is offline
Caffeine - Nicotine - Sugar
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2001
Location: Germany, Cologne
Posts: 60 Pushkin User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Quote:
Originally posted by sLiPkNoT rUlEz
and then all you have to do is open a command prompt, go to the directory it's in, and type javac <options> myClass.java


Uhhmm... Open your HelloWorld.java in UE, press F9 and set the command to javac "%f"

Reply With Quote
  #6  
Old February 18th, 2002, 11:47 PM
drgroove's Avatar
drgroove drgroove is offline
pushing envelopes, not pencils
Dev Shed God 2nd Plane (6000 - 6499 posts)
 
Join Date: Feb 2002
Posts: 6,224 drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 1 Day 4 h 34 m 57 sec
Reputation Power: 174
Question new to java... recommended IDE's?

Hi,

I'm taking the Java challenge... I code in mostly web-based languages (php, asp, javascript, html (duh), css, yada yada), but am just now starting to get into Java as my first applications-development language.

Anyhow - I'm down w/ the text editor business (using win notepad), but I am interested in an IDE.

Any recommendations? Anything out there for Windows 2000 pro that makes Java code more manageable (i.e., text highlighting, auto-tabing, stuff like that)?

Thanks!!!

Reply With Quote
  #7  
Old February 19th, 2002, 03:21 AM
Pushkin Pushkin is offline
Caffeine - Nicotine - Sugar
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2001
Location: Germany, Cologne
Posts: 60 Pushkin User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Since a few Days i use FreeBSD, Linux and Windows 2000. My editor of choice is now jEdit (www.jedit.org), as it looks the same on all platforms.

It has syntax-highlighting and auto-tabbing, among a lot of other usefull tools, however you have to start javac separately.

Maybe there is even a plugin which can start javac, not sure 'bout that.

Reply With Quote
  #8  
Old February 20th, 2002, 05:00 PM
drgroove's Avatar
drgroove drgroove is offline
pushing envelopes, not pencils
Dev Shed God 2nd Plane (6000 - 6499 posts)
 
Join Date: Feb 2002
Posts: 6,224 drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 1 Day 4 h 34 m 57 sec
Reputation Power: 174
cool!

thanks for the recommendations!

Reply With Quote
  #9  
Old February 21st, 2002, 09:53 PM
PhatBarren PhatBarren is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2001
Location: Canada
Posts: 33 PhatBarren User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via ICQ to PhatBarren
I can't say enough good about UltraEdit! It's the best text editor for Windows. Check it out at http://www.ultraedit.com . And check out all the great things people say about it here:
http://www.idmcomp.com/discus/

I plug in my javac.exe and java.exe (and used to use it for the JavaDoc generator, too). I just hit Cntrl-Shift-0 to compile java, and then Cntrl-Shift-1 to execute the .class files. You can set any command line thing you want in the "Tool Configuration". I recently got the free Borland C++ compiler and now i have that pluged in, too.

It has nice syntax highlighting for Java, C/C++ PHP, XML, whatever...

You can download a trial (full featured, expiries after 30 days or something) but cracks are easily availabe. I used to get the crack, but I love this program so much that I actually paid up for it... $35.

If you get it and need help setting up the Tool Configuration, hit me up on ICQ 51589365.

Good luck
__________________
X___________
the PhatBarren

Reply With Quote
  #10  
Old February 21st, 2002, 10:31 PM
Ctb's Avatar
Ctb Ctb is offline
An Ominous Coward
Dev Shed Specialist (4000 - 4499 posts)
 
Join Date: Jan 2002
Posts: 4,425 Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level)Ctb User rank is Colonel (50000 - 60000 Reputation Level) 
Time spent in forums: 3 Weeks 10 h
Reputation Power: 0
Here's sort of an extension to the original question:

What about something that I can use to execute JSP from my web browser, in Win9x, and see the results returned to the browser. In other words, does anyone have any suggestions on some "desktop servers" that would run on WinME?

I tried Apache and Tomcat, but for some reason, the browser just tries to "download" the file off of my hard drive no matter how I set up Apache (perl files). And forget Tomcat, WinME royally screws that up.

I also tried installing Apache on Linux, but it kept saying the shell wasn't a valid file?? Alrighty then... I just ls'd it Linux.... but that's another forum (or two)

Reply With Quote
  #11  
Old February 22nd, 2002, 10:07 PM
PhatBarren PhatBarren is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2001
Location: Canada
Posts: 33 PhatBarren User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via ICQ to PhatBarren
Check out a different forum: http://forum.java.sun.com/
Everyone there is into Java, so you'll get more info there for sure! They have specific ones for JSP and Servlets, too.

Reply With Quote
  #12  
Old February 22nd, 2002, 11:32 PM
drgroove's Avatar
drgroove drgroove is offline
pushing envelopes, not pencils
Dev Shed God 2nd Plane (6000 - 6499 posts)
 
Join Date: Feb 2002
Posts: 6,224 drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level)drgroove User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 1 Day 4 h 34 m 57 sec
Reputation Power: 174
ok... question...

I'm interested in using M$'s Visual J++ ... anyone aware of where I can, *ahem*, aquire a version of it?

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesJava Help > java editor, which one to download


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support |