Suggestion on Java Book

Hi! I studied Java about 2-3 yrs ago and I just need to refresh my memory about the language so does anyone have suggestions about which book to buy? I just need a Java book that would refresh my memory and if possible, update me on the latest information and news about java. Thank you very much!

i think he means that a lot of people have asked the same question before, and you should do a search on the forums for an answer.
But really, if you're looking for a good book you can't go past Core Java 2 (Vol 1 & 2), by Horstmann and Cornell, from the Sun Microsystems Press. Vol 1 covers all the fundamentals and is a great reference. Vol 2 goes into more detail on advanced topics: multithreading, networking, advanced swing and awt etc, both come with a CD that has heaps of code samples.
They are a bit expensive (over $Aus 100 each) but more than worth it.

Similar Messages

  • Java book which is fun.

    Please suggest a java book for beginners which will be useful and fun at the same time.

    Head First Java by Bert Bates and Kathy Sierra

  • Suggest some good books on Java?

    Hello there,
    I am new to Java...
    Although i have a courseware on java its quiet insufficient to learn the bare bones of the language from the beginning...
    Can someone be kind enough to suggest some good java books i could refer to....
    Gratefully
    Cozmic.G

    You could also try:
    SAMS Teach Yourself Java in 21 Days
    (Inexpensive, examples, easy to understand)
    Java How to Program -- by Harvey M. Deitel, Paul J. Deitel
    (More expense then many, $72 I think, in a college textbook format, very thorough, MANY examples including a elevator animation that is kind of fun)
    The "Core Java" series from Sun, many books in the series over the functional topics... these make a pretty good reference, too.
    You can't beat the price for the On-Line Tutorial (previously mentioned by Porta-Bill) that Sun provides... there's a lot to get your feet wet there...
    An on-line, downloadable, free tutorial called "Thinking In Java". I don't recall the web-site but you should find it easily with whatever search engine you use.
    Enjoy!

  • Please suggest the best book or materila to learn EP Developement

    Please suggest the best book for learning Enterprise Portal developement in SAP ?  Which one is good in between below.
    1. SAP® NetWeaver Portal Technology: The Complete Reference by Rabi Jay ( How is this book in EP ?)
    2. SAP Authorization System: Design and Implementation of Authorization concepts for SAP R/3 and SAP Enterprise Portals by IBM Business Consulting (sap press book).
    Regards
    Badari

    Hi,
    For Content Developments you can refer below links
    LINKS FOR BEGINNER:
    Beginning EP Development
    Oliver's favorite SDN link collection
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/387daf90-0201-0010-bb98-cb1a5545bf69
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/4b0c105e-0501-0010-bcb0-92478a4b2a17
    Overview of the Content Development Process
    Overview of the Content Development Process
    Java development methodologies (Part I)
    Java development methodologies (Part I)
    Java development methodologies (Part II)
    Java development methodologies (Part II)
    Setting up the NetWeaver development environment (Part II)
    Setting up the NetWeaver development environment (Part II)
    Installing and configuring the preview edition of EP
    Installing and configuring the preview edition of EP
    Top Weblogs of All Time [19 to 14]
    Top Weblogs of All Time [19 to 14]
    Enterprise Portal Implementation Forum
    Enterprise Portal Implementation Forum
    Beginning EP Development
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/1d/40e93bac3c5a6de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/50/da644160087d47e10000000a1550b0/frameset.htm
    Have a look at the following threads to have an introduction to portal:
    Hi
    What is EP ??
    For kick start in portal, the following Wiki link is enough:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/ep/introduction%2bto%2bportal
    You can now see the following threads which already have similar question discussed, you will get lots of links in these threads:
    Start with EP
    e-Books on EP
    Portal Development
    Portal 7.0 Documentation
    Beginner to EP
    Thanks
    Santosh

  • Whats a good JAVA book?

    What do you think is a good Java book for someone who has a little expericne with java? I have experience in COBOL and a little touch of C, and Visual Basic? Any suggestions?
    Thanks
    Justin

    I would suggest Java: an Introduction to Computer Science and Programming by Walter Savitch. This book assumes that the reader has no programming experience and it's aimed at students. I realize that you do have experience with COBOL, but I would recommend this one over the Core Java series to start out. Core Java volumes 1 and 2 are not good as an introduction for someone coming from a non-object oriented language. They would be a lot better for someone migrating from C++. They frequently refer to C++ and VB in their examples. They are excellent books, but better as a reference than an initial learning source.
    Ethan

  • Java compiler contradicts Java book

    NOW this is a big surprise...One of the Java book says "If a static member of the class, singleton in the ex below, is PUBLIC, the client (HelloUser in this case) can still access the static member even if the client is not in the same package" . I tried it but got the following error - singleton can't be accessed outside the package ? Any clues ?
    import learn.*;
    public class HelloUser {
        public static void main(String args[])
         Object obj[] = {new Integer(11), new Character('A')};
         Hello.print(obj);
         singleton.GetSingleton().print();
    package learn;
    class singleton {
        private static int mX;
        private singleton(int x) {mX = x;}
        private static singleton sSingle = new singleton(10);;
        public static singleton GetSingleton() {
         print();
         return sSingle;
        public static void print()
         System.out.println("Val: " + mX);
    }

    No, the book is not wrong just not quite complete. It should have stated that other classes in the same package have access ...OK, let's complete the original statement using your suggestion :
    An object of a class with package access can be created by any class inside the package but not outside the package. However, if a static member of that class is public, the client programmer can still access that static member from withn the same package even though they can't create an object of that class.
    Does this make any sense? No.

  • Your Favorite Java Book

    What is your favorite book on beginning Java programming?
    I have Java Programming 2nd Ed by Joyce Farrell, Java In A Nutshell by David Flanagan, Java How to Program 4th Ed by Deitel & Deitel, Java with Object-Oriented Programming by Paul Wang and Java An Introduction To Computing by Adams, Nyhoff and Nyhoff.
    I took a beginning class in Java that was considered an adult continuing education course last summer (1 credit hour). I am almost finished with my first 4 credit hour course in Java. What is your favotite and best book on Java? Do you have any other suggestions for Java study?

    What is your favorite book on beginning Java
    programming?
    I have Java Programming 2nd Ed by Joyce Farrell, Java
    In A Nutshell by David Flanagan, Java How to Program
    4th Ed by Deitel & Deitel, Java with Object-Oriented
    Programming by Paul Wang and Java An Introduction To
    Computing by Adams, Nyhoff and Nyhoff.
    I took a beginning class in Java that was considered
    an adult continuing education course last summer (1
    credit hour). I am almost finished with my first 4
    credit hour course in Java. What is your favotite and
    best book on Java? Do you have any other suggestions
    for Java study?i am a sophomore learning object-oriented technology .Though i only has only read
    6 chapters of Thinking in Java, i found the book really tasty, especially very suitable for greener:)

  • Need a good core java book

    As I am a beginer and I have a little bit knowledge of OOPs concepts, So any one suggest me a book which explains each concept of OOps with explanation and sufficent examples upto SWINGS and JDBC connections.

    * Horstmann, C. S. and Cornell, G. (2004). Core
    Java 2, Volume I� Fundamentals, 7th edition.
    Upper Saddle River: Prentice Hall PTR.
    * Horstmann, C. S. and Cornell, G. (2004). Core
    Java 2, Volume II� Advanced Features, 7th
    edition. Upper Saddle River: Prentice Hall PTR.Both great titles, they are sat next to me now.
    If you are a true beginner then I'd also recommend:
    Nino, J. & Hosch, F. A. (2001) An Introduction to Programming and Object Orientated Design Using Java John Wiley and Sons.
    http://www.amazon.co.uk/exec/obidos/ASIN/0471354899/203-0474646-1863160
    Although you'd probably be better with the more recent edition:
    Nino, J. & Hosch, F. A. (2004) An Introduction to Programming and Object-Oriented Design Using Java: Java 5.0 Version. 2edn. John Wiley and Sons. http://www.amazon.co.uk/exec/obidos/ASIN/0471712272/

  • Java book/ebook or training site with examples

    Hello,
    I need to improve myself on java basics, got a few books which explain a lot, however they don't have any examples. What I need is a book or tutorial_site which first introduces a topic then asks the reader to experience it on various examples to see different aspects.
    Thank you.

    Just a side note:
    If you haven't already done so, I suggest your next step is to download the Eclipse IDE and get familiar with it (its free and used by a very large number of professional developers). You can create projects within it. However, I suggest you first create a few code samples from your introductory Java book using a text editor and compile using the DOS command window before moving onto an IDE so you can appreciate what it does for you.

  • Java books/reading over Christmas?

    The last post got me thinking... Is there any Java book you'd like to get your hands on? (Santa, are you using Echelon to snoop? Filthy Rich Clients, please) Or will you be using the time to (re)read a book that's been sitting on the shelf? Or would you like to nominate the best new Java book of 2007? What are people reading?

    ironmonkey6 wrote:
    I'll be reading my first Java book, which is "Java in a Nutshell" by o'Reilly. Really? That's pretty much like printing out the javadocs for the entire JDK and reading those.
    I used to have a copy of it when I first started with Java, but now I find that the on-line stuff is more convenient and up to date.
    I like it so far. I'm coming from C/C++ so I haven't had any difficulties understanding any of the syntax used. I hope to finish this 1224 page monster by Christmas or the first week after.I would not consider that to be a good tutorial or first book to read. Who suggested that?
    Bruce Eckel's "Thinking In Java" is a much better choice. It's free and available on-line. Google for it. (He also has a "Thinking in C++", which you might like.)
    %

  • Can someone suggest some good books for sql reporting services (SSRS) 2012 or above?

    Hi Everyone,
        Can someone suggest some good books for sql reporting services (SSRS) 2012 and above? I ave been working on ssrs for past 2 months and have a basic understanding of ssrs.
    Regards
    Regards

    Hi,
    you can look for below options;
    http://www.amazon.in/Microsoft-Server-Reporting-Services-Recipes/dp/0470563117#reader_0470563117
    http://www.goodreads.com/book/show/18147604-learning-sql-server-reporting-services-2012
    Thanks
    Please Mark This As Answer or vote for Helpful Post if this helps you to solve your question/problem. http://techequation.com

  • Suggestion on Good Books for SAP NetWeaver Administrator

    Hi,
    I am very new to SAP NetWeaver. Can any one please suggest some good books to learn SAP NetWeaver Administration. Is SAP NetWeaver For Dummies is good book to start with?
    I want to understand the SAP NetWeaver Architecture and also want to learn from SAP Basis administration/Consultant point of view. So which book can help?
    Also I got to kmow, SAP NetWeaver includes the following components and tools:
    Components:
    SAP Auto-ID Infrastructure
    SAP Business Intelligence
    SAP Enterprise Portal
    SAP Exchange Infrastructure
    SAP Master Data Management
    SAP Mobile Infrastructure
    SAP Web Application Server
    Tools
    SAP Composite Application Framework
    SAP NetWeaver Developer Studio
    SAP Solution Manager
    So from SAP Basis Consultant point of view, which Componet one should learn or focus on?
    Appreciate help.
    Thanks
    Regards,
    BasisCK.

    Hi Nitin,
    Thanks for the reply. SAP R/3 Handbook, Third Edition - By Jose Antonio Hernandez, Franklin Martinez, James Keogh
    ~
    Table of contents
    Chapter 1: SAP: From SAP R/3 to SAP NetWeaver
    Chapter 2: The Architecture of the SAP Web Application Server
    Chapter 3: SAP NetWeaver: An Overview
    Chapter 4: Using SAP Systems
    Chapter 5: Upgrading to SAP R/3 Enterprise: The First Step into SAP NetWeaver
    Chapter 6: The Change and Transport System
    Chapter 7: Development Options with SAP Solutions: ABAP Engine
    Chapter 8: User Management and Security in SAP Environments
    Chapter 9: Web Application Server System Management
    Chapter 10: Performance and Troubleshooting with SAP Solutions
    Chapter 11: SAP for IT Managers: Implementation, Planning, Operation, and Support of SAP Systems
    INDEX
    ~
    Is this book completely talk about SAP NetWeaver or it's kind of transition/bridge from SAP R/3 to SAP netweaver?
    Since you are experienced in Netweaver technology, can you suggest the step by step approach to be master in this?
    I mean read this book first, then what next? what component I should go for it? XI, EP??
    Appreciate your help and inputs.
    God bless u.
    Thx
    Regards.
    Basis CK.

  • Java Book Recommendation?

    Hi,
    I work a lot with scientific computation: reading in data, working with mathematical models, etc.
    However, I can't find a Java book that tackles those aspects in depth.
    Does anyone know of a good book on this topic?
    Regards,
    -mike

    mmeclimate wrote:
    I am sorry you feel that way about my questions! For example, in scientific computing, we work a lot with differential equations, Fourier transforms and so on. I can of course, write a program that will do those computations from scratch - which would take a lot of time! Or, what if there was a Java package that do these calculations? By having a book which focuses on these issues, one can save a lot of time! So, I believe you may have misunderstood my questions.
    That's a different question.
    Of course there exist libraries to aid in scientific and engineering computing.
    Can't give you names as I'm not (sadly) into that field any more, but I do know they exist.
    There are a few books that deal with Java and Scientific Computing that I found. These books prove that the questions that I posed here are relevant, and not a way of "give me the source" that you mentioned. Most people who replied to my questions were very polite as I have been - politeness is definitely an attitude that is much appreciated here!
    Most such questions are from schoolkids who don't want to put in their own effort but just want to copy and paste sourcecode and turn it in as their own for their homework assignments.
    That's how yours was understood to be as well.
    Here is a list of the books I found:
    - A Numerical Library in Java for Scientists and Engineers by Hang T. Lau
    - Java for Scientists and Engineers (2nd Edition) by Stephen J. Chapman
    - Essential Java for Scientists and Engineers by Brian Hahn
    - Java Programming for Engineers by Julio Sanchez and Maria P. Canton
    - Java Gently for Engineers and Scientists by Judith Bishop and Nigel Bishop
    - Java for Engineers and Scientists by Gary J. Bronson
    This is definitely a great list for people who want to apply Java in Science and Engineering.
    May look at some, especially the first :)

  • Look for a good Java Book

    Hello,
    I m looking for a good java book.
    I know already about java In general:GUI,SWING ,applet and all basics things.
    i would like to buy a more advanced book.
    Any idea?
    Since all those books are expensive, i want to buy only one book a very good one.
    thanks a lot
    sebastien

    Please any ideas?
    it is very important for me
    i want to learn more about java i can do basic things like GUI,applet and some basic programs
    i want to learn more about java : Java Beans,Java networks,databases,SWING.....
    Any good book which covers many topics at once?
    thanks a lot
    sebastien

  • Suggest a good book for learning?

    Hey, all.
    Trying to get into the automating/scripting thing as I've started a new job that has to do a lot of versions of similar animations/illustrations. I'm no programmer, but have had some success with simple AppleScripts in Illustrator and Photoshop, but After Effects doesn't like to play nice with AS. So I figure I may as well focus my efforts on ExtendScript/JavaScript to work with all the apps, be cross-platform, plus help with my limited Expressions knowledge.
    So can anyone suggest some good books for learning the JavaScript language? I've done online tutorials, which have helped a little, but just a big ol' consolidated JavaScript book, teaching the structure and syntax from the beginning (again, not a programmer by trade) would be best for me. Thing is, 95% of the books I've looked at are focused on web design, which I'm not that interested in. I'll use one if the core JavaScript teachings are well-presented and I can just ignore the web stuff; just don't want to buy a book that I'm only going to read half of and not learn everything I need to.
    All suggestions welcome, and thanks in advance.

    Hi there - lots of resources...
    Look up "eloquent javascript" online for a pdf.
    Javascript - The Definitive guide
    NewThinkTank on youtube
    Codeacademy
    Then it's the scripting guide for the other half.

Maybe you are looking for

  • Cannot add apps from itunes

    Hi there, after connecting my ipad to my mac and syncing, all apps on the ipad are gone. They're still in the section 'apps' of my itunes library but whenever I try to do INSTALL or drag one to one of the screens on the ipad, it appears there, but af

  • Batch File for .msi

    Hi, Can anybody direct me to a link with a .bat file that will install .msi file for Windows 7 from local computer? Thanks in advance

  • Does DNG Converter 5.6 Alter WB Info of DMC-LX3 RW2s?

    I have converted a Panasonic DMC-LX3 generated ".RW2" to DNG using DNG Converter 5.6 for the exclusive purpose of being able to open it in the current version (2.1040) of Rawnalyze. The conversion prodeeds OK, and I am able to view the resulting DNG

  • Random roll over with CO Pulse Ticks

    I'm using the 6036E with a random signal (linear encoder) to measure ticks and trigger analog samples.  I have it setup to count 2 rising/falling edges and have the analog input trigger off of the counter's output. The counter is setup for the count

  • Port forwarding 1941 and Comcast

    I have my 1941 router connected to my Comcast Modem on G0/0.  I have a 3560 connected to G0/1.  The router is handling my DHCP duties. I have a HAI Omnipro ii (Security/Home Automation) that I would like to access remotely.  It has an IP address of 1