> I have been a Microsoft developer most of my career. Most of my work
>has been of the web variety using ASP.NET and C#. I would like to
[quoted text clipped - 3 lines]
>to C#, but have yet to find something for those looking to move from
>C# to Java. Thanks.
There are 20+ books on Java to C# but not a one I know of going the
other way. Perhaps one of the Java to C# books could still be useful.
see http://mindprod.com/jgloss/gettingstarted.html

Signature
Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com
dwok - 11 Oct 2007 21:52 GMT
On Oct 11, 4:02 pm, Roedy Green <see_webs...@mindprod.com.invalid>
wrote:
> There are 20+ books on Java to C# but not a one I know of going the
> other way. Perhaps one of the Java to C# books could still be useful.
[quoted text clipped - 3 lines]
> Roedy Green Canadian Mind Products
> The Java Glossaryhttp://mindprod.com
Thanks Roedy,
That links looks like a good resource.
- dwok
bbound@gmail.com - 12 Oct 2007 23:50 GMT
On Oct 11, 4:02 pm, Roedy Green <see_webs...@mindprod.com.invalid>
wrote:
> > I have been a Microsoft developer most of my career. Most of my work
> >has been of the web variety using ASP.NET and C#. I would like to
[quoted text clipped - 6 lines]
> There are 20+ books on Java to C# but not a one I know of going the
> other way.
Wise green man once said, "Once you start down the dark path, forever
will it dominate your destiny". I suspect he may have been referring
to precisely what you've just observed. ;)
> Hi All,
>
[quoted text clipped - 7 lines]
>
> - dwok
I don't know if it will help you, but the new Java 6 edition of "Core
Java" (Just published) is crammed with sidebars for C++ programmers
moving to Java (related Java concepts and syntax to that of C++).
(I just checked out ch.5 on inheritance, which is a sample
chapter available as a PDF.) Cay Horstmann (one of the authors)
always seems to write good Java books.
(Personally, having recently purchased the Java 5 SE edition I think
I'll wait a year and get the Java 7 edition. I think I've bought this
book 4 times so far!)
-Wayne
John W. Kennedy - 12 Oct 2007 02:42 GMT
> I don't know if it will help you, but the new Java 6 edition of "Core
> Java" (Just published) is crammed with sidebars for C++ programmers
> moving to Java (related Java concepts and syntax to that of C++).
> (I just checked out ch.5 on inheritance, which is a sample
> chapter available as a PDF.) Cay Horstmann (one of the authors)
> always seems to write good Java books.
I agree. "Core Java" has been terrific right from the start. It doesn't
assume that you know C#, but it assumes that you know programming.

Signature
John W. Kennedy
"The grand art mastered the thudding hammer of Thor
And the heart of our lord Taliessin determined the war."
-- Charles Williams. "Mount Badon"
dwok - 12 Oct 2007 19:24 GMT
Many great suggestions! Thanks everyone. I think the Core Java book
may be a good choice for me.
- dwok
> I have been a Microsoft developer most of my career. Most of my work
> has been of the web variety using ASP.NET and C#. I would like to
[quoted text clipped - 3 lines]
> to C#, but have yet to find something for those looking to move from
> C# to Java. Thanks.
I think you will find the Java language itself very easy to learn.
1) Download and install JDK 1.6 (also known as 6)
2) Download and install Eclipse 3.3
3) Download and unpack the Java API docs (Java class library) - it
is HTML so you can view it with your browser
4) Get a standard Java book as reference - just pick anyone that
is recent and has good reviews at amazon.com
Then you will be coding Java in a few months.
JEE (previous J2EE) is a completely different matter.
You will need quite a bit to master that.
You will need:
* application server (I will recommend JBoss)
* book about servlets and JSP
* book about EJB's
* book about your web framework (I will recommend JSF but Struts could
still be a possibility)
* possible a book about Hibernate if you will use that
plus more
That may take years to master.
Arne