Home > Archive > Java Help > April 2005 > Java training advice
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Java training advice
|
|
| brick8952 2005-04-20, 8:58 pm |
| I'm a mainframe programmer teaching myself Java. I've made it through a
few intro books. I've learned OOP, a little Swing, and so forth. But I
don't know what to concentrate on next. Do I go straight to J2EE? A
list of topics would be appreciated. Thanks.
| |
| Frances Del Rio 2005-04-20, 8:58 pm |
| brick8952 wrote:
> I'm a mainframe programmer teaching myself Java. I've made it through a
> few intro books. I've learned OOP, a little Swing, and so forth. But I
> don't know what to concentrate on next. Do I go straight to J2EE? A
> list of topics would be appreciated. Thanks.
well, I'm not an expert yet, unfortunately (as some in this ng can
attest to... :) but here's a general index with a whole lot of stuff
http://java.sun.com/docs/books/tuto...lybigindex.html
and for API (documentation of all packages, classes, methods, etc..)
http://java.sun.com/j2se/1.5.0/docs/api/index.html
good luck..
Frances
| |
| Newsey Person 2005-04-20, 8:58 pm |
| Have you thought of a correspondence course such as the Open University?
Newsey
"brick8952" <brick8952@hotmail.com> wrote in message
news:1114024806.209814.58290@o13g2000cwo.googlegroups.com...
> I'm a mainframe programmer teaching myself Java. I've made it through a
> few intro books. I've learned OOP, a little Swing, and so forth. But I
> don't know what to concentrate on next. Do I go straight to J2EE? A
> list of topics would be appreciated. Thanks.
>
| |
| brick8952 2005-04-21, 4:00 pm |
| Two problem with that: the cost, and that I won't know whether the
instructor or the class is any good. I got a Safari Books subscription,
so I have access to a lot of Java books. I just don't know where to go
next...
| |
|
| On Wed, 20 Apr 2005, brick8952 wrote:
> I'm a mainframe programmer teaching myself Java. I've made it through a
> few intro books. I've learned OOP, a little Swing, and so forth. But I
> don't know what to concentrate on next. Do I go straight to J2EE? A
> list of topics would be appreciated. Thanks.
There is a lot of information on http://java.sun.com. Possibly too much
information. Here is a little bit of a break down so you might be able to
make a little more sense of what is on this site:
There are three forms of Java: J2SE, J2EE and J2ME.
J2SE is if you want to program standalone applications. This is the core
of the Java programming language. SE = Standard Edition.
J2EE is a framework for creating applications that exist in an Enterprise
environment. EE = Enterprise Edition. This builds on J2SE. If I wanted to
write programs that run on an application server I would use J2SE to code
the guts and J2EE to organize the design. For example, online banking
would be J2EE.
J2ME is a cut down version of J2SE. It gives you what you need to program
Java for mobile devices. ME = Mobile Edition. This is not an area I'm
really familiar with so you'll have to depend on others to elaborate.
If you want to program desktop applications that run on a single machine
or have some network access then you can learn it all in J2SE.
If you want to have the application running on multiple machines, access
databases, handling web access, security, etc. then you want to learn
J2EE. When you get into J2EE you can expect acronym overload. You will see
things like JDBC (Java DataBase Connections), JNDI (Java Naming Directory
Index), RMI (Remote Method Invocation), etc.
J2EE is all about creating standards. For example, I maintain an
application that can be built for 6 different application servers and
configured (just by editing a text file) for any number of databases. All
from one code base. There are no "if (server1) then do X else if (server2)
then do Y else if (server3) then do Q" statements in the code.
In other words, if I know how to program in C I don't necessarily know how
to program an Ethernet driver. Learn Java first (J2SE) and then learn how
you can apply it second (J2EE). I believe the same is true for J2ME; J2ME
is a way to apply J2SE.
--
Send e-mail to: darrell dot grainger at utoronto dot ca
| |
| Newsey Person 2005-04-21, 8:58 pm |
| The tutors are normally a waste of space in that they will no doubt know the
subject but they just are so hard to get help from.
The courses I have done are very good in pushing your own learning abilities
and you'll learn a lot from the courses.
I was in the same position as you are, before formal courses I had a lot of
books and knowledge but didn't know what was relevant or necessary.
As for the expense some of them are a little pricy but you don't pay the
true cost, not that that's much comfort.
Newsey
"brick8952" <brick8952@hotmail.com> wrote in message
news:1114096235.171713.147190@g14g2000cwa.googlegroups.com...
> Two problem with that: the cost, and that I won't know whether the
> instructor or the class is any good. I got a Safari Books subscription,
> so I have access to a lot of Java books. I just don't know where to go
> next...
>
| |
| Sean Anderson 2005-04-25, 8:58 pm |
| TRain with Good Books From SUN PRESS and O'Reilly
Once you are "somewhat" comfortable with objects and you "think" you
understand objects become an expert (Read and Practice, Practice, Practice)
at SWING, JDBC. This way you will be able to make some useable applications
and then you will have objects on the brain and will realize that a lot of
people do not understand OOP and the ones who do sound like an English
teacher when they try to explain it.
Everything else after this is gravy and just a matter of getting comfortable
with the APIs
I have a stack of JAVA books 5 ft high and I need more.....
It is a challenge to be OOP all the time in java, in fact you can program
procedurally with Java, programmers have a hard time grasping Java when they
are used to modular/procedural programming, some spend their time learning
how to program procedurally in Java, it's a rough way to go and few benefits
are gained with java at that point
Try javaworld.com for some good OOP articles
Objects, my precious....yes..objects
Sean
|
|
|
|
|