The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.
|
 |
|
Dev Shed Forums
> Programming Languages
> Java Help
|
Help
Discuss Help in the Java Help forum on Dev Shed. Help Java Help forum discussing all Java platforms - J2ME, J2SE and J2EE - as well as relevant standards, APIs and frameworks such as Swing, Servlets, JSPs, Applets, Struts, Spring, Hibernate, ANT, EJB, and other Java-related topics.
|
|
 |
|
|
|
|

Dev Shed Forums Sponsor:
|
|
|

January 15th, 2001, 02:43 PM
|
|
Junior Member
|
|
Join Date: Jan 2001
Posts: 7
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
I have no idea where to get started.
I know how to program so I need a little help getting set up.
What are servlets, applets, jars, .... There are a ton, which is which.
Are there any GUI that are recomendable.
And last but not least, are there any documents on the net that go over any of the above.
|

January 23rd, 2001, 12:19 PM
|
 |
film at 11
|
|
Join Date: Aug 2000
Location: Portland, OR
Posts: 413
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
|
to start with, go to java.sun.com. there you'll find discussion groups (sometimes helpful), and tons of other stuff including all the APIs for all the java classes, including servlet classes.
here's my short answer to your question:
applets are (usually fairly small) applications that run inside a web browser. applets have a gui. when you run an applet in your web browser, the applet code is downloaded to and run on your pc. applets can't write to the host pc's hard drive. applets are good for cute little programs that don't really do much, like games or such. they are not good for data-intensive interactions with other systems.
servlets are generally used to support web applications of any size. the servlet runs on your web server, and is a lot like an applet in its life cycle, but it has no gui. you can output html directly with the servlet and build web pages that way, but it's a pain in the ***. when used in conjunction with JSP (java server pages) or supporting PHP applications or the like, they're incredibly useful.
packages are just ways to organize classes. a jar represents a hierarchy of classes, all packaged up. so all a jar really is, is a representation of a file tree containing java class files (compiled java code).
i recommend spending a little $$ and get a book called "Java in a Nutshell". don't remember offhand who wrote it. good luck
|

January 24th, 2001, 08:17 AM
|
 |
SwollenMember
|
|
Join Date: Jun 2000
Location: the master control
Posts: 264
Time spent in forums: 13 h 14 m 57 sec
Reputation Power: 13
|
|
|
Sun has a really good tutorial on JSP and servlets. There are also about 3 sites out there that will let you do some development on their server for free...do a search for free servlet hosting.
|

January 24th, 2001, 03:14 PM
|
|
Junior Member
|
|
Join Date: Jan 2001
Location: Norfolk, NE
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Dude,
Here is what I recommend. You seem to be having trouble understanding the very basics of Java, you need to find a book to teach you how to program in Java. There is probably one available from your favorite programming series.
|
Developer Shed Advertisers and Affiliates
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Rate This Thread |
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
|
|
|
|
|