Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been a Ruby developer for the past 4-5 years, and prior to that coded in Perl and a language called ProvideX for years.

As hard as it may seem, I've never written a Java application short of the basic Hello World app probably a decade ago.

I'm beginning to start doing some Android development to port some iPhone applications we did for a client over to the Android platform. As such, I'm wondering what the best reference book I can buy is to get up to speed quickly with the features (and peculiarities) of Java.

There are numerous "Learn Ruby for Java programmers" out there, but not really any reference books for going the otherway of Ruby-to-Java. I'm looking for something preferably like the "Learn Perl the Hard Way" book. I know how to code, I just need a reference on learning the proper mechanics of Java after having done Ruby (and a bit of Obj-C) work exclusively for the past few years.

share|improve this question

closed as off topic by user93353, Mohit Jain, alex23, Muhammad Reda, skuntsel May 12 at 7:43

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 2 down vote accepted

Go with the Sun Tutorials. Sun (now Oracle) did a really smash up job with their set of Tutorials. They cover pretty much everything in a straight forward manner.

http://java.sun.com/docs/books/tutorial

Bookmark and keep a window up to the Standard API at all times, while you are at it: http://java.sun.com/javase/6/docs/api/

I honestly don't think you need a book for Java if you've programmed enough before (otherwise, I'd immediately recommend Head First Java).

[Edit based on comment asking for syntax guide]

One book (although it's available in .html) that might help if you just need a syntax guide / reference is the Java Language Specification (JLS): http://java.sun.com/docs/books/jls/

share|improve this answer
agree I probably dont know a "learn java" type of book. I really just need more of a syntax manual type of thing to help me learn the basics quickly. ALmost like a pocket reference type of manual. – cpjolicoeur May 30 '10 at 14:17

I found this book pretty good: Introduction to Java Programming: Fundamentals First

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.