Computer Programming

Google

General

Programming
APIs and Operating Environments
Extensible Languages
Graphics and Multimedia
Languages and Tools
Software Design
Web Programming

Languages

ADA
ASP
Assembler
Basic
C#
C and C++
CGI
COBOL
Delphi
Eiffel
Forth
Fortran
HTML
Java
Javascript
LISP
Logo
Modula 2
Pascal
Perl
PHP
PL/I
Postscript
Prolog
Python
QBasic
REXX
Smalltalk
Visual Basic
XML

Databases

Access
Clipper
DBase
Filemaker
IBM DB2
Informix
Ingres
JDeveloper
MySQL
Oracle
Paradox
Powerbuilder
SQL

Software

Database
Development Utilities
Graphics
Linux
Programming
Programming Languages
Training & Tutorials
Web Development

HobbyDo


Search Now:

JAVA BOOKS

Posted in Java (Wednesday, August 20, 2008)

Written by Art Taylor. By Prentice Hall Ptr. The regular list price is $49.95. Sells new for $14.99. There are some available for $1.13.
Read more...

Purchase Information
5 comments about Jdbc Developer's Resource: Database Programming on the Internet (Prentice Hall Ptr Developer's Resource Series).
  1. This is a pretty good book, especially for a beginner.

    My only major complaint is that the examples and code snippets don't culminate in anything. I wish there was a more significant end-result to the book. I think that would help make the code more understandable.

    If you're a beginner to JDBC, this would be a good first step.



  2. I am interested in connecting via JDBC from an applet. This subject is not covered in any depth, and there are no instructions for preparing your environment for the samples to work. I HATE depricated code, and the book is full of it.


  3. Tons of garbarge examples that don't even make sense....I will let the horse speak:

    int getColumnType(int column)

    String colTypeName = rsmd.getColumTypeName(1);



  4. Tons of garbarge examples that don't even make sense....I will let the horse speak:

    int getColumnType(int column) ------------------------------------------- String colTypeName = rsmd.getCOlumTypeName(1);



  5. This book is good for a beginner. I read this book and it helped me tremondously. This book would not be good for the experienced beginner. The code is easy to follow; although some could have been written better. It is a good reference. -- Not the best I have read.


Read more...


Posted in Java (Wednesday, August 20, 2008)

By Millin Publishing, Inc.. Sells new for $5.95.
Read more...

Purchase Information
No comments about JAVA WATCH.(News Briefs): An article from: Software Industry Report.



Posted in Java (Wednesday, August 20, 2008)

By Millin Publishing, Inc.. Sells new for $5.95.
Read more...

Purchase Information
No comments about Java-based large enterprise aplication emerges from Sun object reality center. (Sun Microsystems Inc.): An article from: Software Industry Report.



Posted in Java (Wednesday, August 20, 2008)

Written by Alexander V. Konstantinou and William Wright and Chad Darby and Glenn E. Mitchell II and Joel Peach and Pascal de Haan and Peter den Haan and Peter Wansch and Sameer Tyagi and Sean Maclean and Sing Li and John Griffin. By Wrox Press. The regular list price is $49.99. Sells new for $2.99. There are some available for $1.10.
Read more...

Purchase Information
3 comments about Beginning Java Networking.
  1. I was looking to do more than what you normally find documented in Java and this gave me the details I needed. It has a lot of network protocol details right in the book so you don't have to keep switching between a protocol book and a Java book. Although it's titled, "Beginning Java Networking" it would also benefit an advanced Java programmer interested in writing networking programs.


  2. I bought this book in hopes that it would help guide me on the path to learn Java programming. Numbering over 1000 pages by several different authors, this book does not have a very consistent feel to it, and jumps around to various subjects about Java and various networking principles. The first 200 pages would be good for a university networking class, but as for being a decent tutorial, it is horrible. This book gives little code snippets here and there, but never fully combines them into one large, solid, and useful application.

    If you are looking for a book to act as a Java tutorial to networking, this is not the book for you. It is very comprehensive in some areas, and much more than many people are willing to spend in getting through sections of this book. However, if you are looking for a little more general purpose Java networking Bible, then this book might be more suited for you.



  3. Do not buy this book, and for your own good, don't even read it!

    First of all, I am an experienced computer programmer, and have developed code for the Java core programming language. I have read many-a-programming book, and can tell you to stay away from this one. Why?

    This book:

    * is not practical
    * is filled with *serious* errors - not just typos
    * fails by attempting to cover too many topics
    * lacks examples and good diagrams
    * lacks a sense of continuity from chapter to chapter

    Many of this book's chapters are written as if they were a theorem: generalizations and buzzwords that don't get you anywhere. For example:

    "If a set of permissions can between them imply a permission - even if no single permission in the set explicitly implies it completely by itself - you will need to provide your own implementation of PermissionCollection." Ha!

    "Because sockets are just *programming* abstractions for network protocols, the other side of the connection does not have to use them. For example, the network program on the right side of this example may be coded in an exotic system that does not use the socket abstraction. That is, sockets don't use any additional communications mechanism other than that provided by the encapsulated protocol." Gimme a break!

    Some of the errors in this book are the following:

    * Chapter 5's author says that java.io.InputStream's "public int read(byte[] buf, int offset, int length)" method reads the input stream starting at 'offset' bytes deep into the input buffer - skipping the bytes toward the front of the buffer. This is incorrect. The author even has a diagram and examples to complement his error. This method actually reads starting at the front of the input buffer, and reads the bytes into 'buf' starting at buf[offset].

    * As if all of the previous chapters' authors' errors weren't bad enough, Chapter 9's author took me to a screeching halt and compelled me to write this whole review when he said this: " It should be noted that the java.net.Socket object returned is bound to an ephemeral port number that is different from the one the ServerSocket is listening to (most applications don't care about that port number)." Whoa! This is absolutely, fundamentally wrong. In truth, the returned Socket has the *same* receiving port number as the ServerSocket. (Otherwise the client's Socket (whose destination port number is the same as the ServerSocket's receiving port number) wouldn't know what this "ephemeral port number" is, and so wouldn't be able to send packets to the server's newly created Socket.) IP packets are demultiplexed according to their *connection* (The 2 connected sockets, i.e. 5 parameters: the common protocol, the source's IP address & port number, and the destination's IP address & port number) and according to socket specificity, not just according to the receiving side's socket.

    * Wrong diagrams. p.163: The diagram is of a program's output which shows "access denied", while its caption above says, basically, "tada, and it works." p.52: This diagram belongs in the I/O chapter.

    The only chapter I found to be somewhat good was the Thread chapter (and a chapter on threads shouldn't even be in a book on networking). This book also suffers from lacking continuity due to the fact that it was written by 10 authors! For instance, this book has no consistent (or good) way of listing the API's and diagraming class relations. Chapters do not pedagogically build on the previous ones. I could go on...

    If you want to learn about networking using Java, then here are your prerequisites. You should learn each of these from a book which specializes in the given topic.

    * Basic Java Programming including I/O and Threads
    * The TCP/IP protocol suite and TCP/IP networking
    * Cryptography (optional)
    * Java Security

    After you do that, I highly recommend the book "TCP/IP Sockets In Java: Practical Guide for Programmers". This book gets the job done at only 110 pages. Another reason I recommend this book is that it lists references to 22 other good and relevant books/documents.

    If you want to learn about HTML, Javascript, Servlets, JSP, RMI, CORBA, etc., then you should find a book specific to that topic. For instance, Marty Hall's books on Servlets and JSP are great.

    Just because a programming book is thick, doesn't mean it's good. The book's publisher, Wrox, does put out some good books, but this just isn't one of them.



Read more...


Posted in Java (Wednesday, August 20, 2008)

Written by Jesus Sanchez Allende. By McGraw-Hill Companies. Sells new for $35.20. There are some available for $31.68.
Read more...

Purchase Information
No comments about Java 2 - Iniciacion y Referencia.



Posted in Java (Wednesday, August 20, 2008)

By D D C Pub. The regular list price is $34.00. Sells new for $22.99. There are some available for $3.71.
Read more...

Purchase Information
No comments about Learning Programming Learning Java.



Posted in Java (Wednesday, August 20, 2008)

Written by Mary Jo Fahey. By Coriolis Group Books. The regular list price is $39.99. Sells new for $4.87. There are some available for $4.66.
Read more...

Purchase Information
No comments about Web Publisher's 3D & Animation Design Guide for Windows: Your Visual, Step-by-Step Guide to Creating Amazing 3D and Animated Web Pages.



Posted in Java (Wednesday, August 20, 2008)

By Holt Software Associates Inc.. Sells new for $3.00. There are some available for $2.68.
Read more...

Purchase Information
No comments about Programming Concepts in Java 2nd Edition w/ IBM's VisualAge for Java 2.0 Software.



Posted in Java (Wednesday, August 20, 2008)

Written by Chuck Cavaness and Brian Keeton. By Que. The regular list price is $39.99. Sells new for $2.98. There are some available for $0.01.
Read more...

Purchase Information
5 comments about Special Edition Using Enterprise JavaBeans 2.0 (Special Edition Using).
  1. I give this book an A+. The first thing that hit me is the book is full of practical knowledge and experience. It's obvious that the authors have built enterprise-level systems for real companies and have not just packaged up the spec. The chapters are well organized and the writing style is exactly what I want. My only complaint is the CD contains a copy of WebLogic 6.0 and not 6.1 as it should. I've been told that the publisher is correcting the mistake. No big deal because WL is available for download from BEA. Having a trial copy of TopLink with the book is an added bonus.


  2. My opinion: very well written, much easier and more fun to read than Ed Roman's book. Plus, excellent coverage of the related subjects: JNDI, transactions and so on. If you have to buy only one book on EJB, buy this one. If you can buy two books, second one is O'Reilly's book, which actually might be somewhat better choice for beginners or if you have to learn EJB fast (but not deep!)


  3. The story build-up is terrible. Each time the authors try to explain something, they start talking about something else they promise to explain a few chapters later. Too much how, not enough why.


  4. I found this book to be an excellent source on EJB and design in general. The authors don't stick to the normal format of typical EJB books and actually cover material that you don't find in other books. This makes for more of an enjoyable read.

    The included source was very helpful, as well as the warnings and tips. Good work on such a broad and complex subject.



  5. I have had this book for a while now, and I do find myself going back to it very often. It is very well written and explains the nuts and bolts of a complex technology in a way that is neither too simplistic nor to verbose. A good balance of theory, reference, tutorial, and design guideline.


Read more...


Posted in Java (Wednesday, August 20, 2008)

By Prentice Hall PTR. The regular list price is $109.00. Sells new for $54.53.
Read more...

Purchase Information
No comments about Complte Java Traing Crse & Java Lab Mnl (5th Edition).



Page 215 of 250
10  20  30  40  50  60  70  80  90  100  110  120  130  140  150  160  170  180  190  200  205  206  207  208  209  210  211  212  213  214  215  216  217  218  219  220  221  222  223  224  225  230  240  250  
Jdbc Developer's Resource: Database Programming on the Internet (Prentice Hall Ptr Developer's Resource Series)
JAVA WATCH.(News Briefs): An article from: Software Industry Report
Java-based large enterprise aplication emerges from Sun object reality center. (Sun Microsystems Inc.): An article from: Software Industry Report
Beginning Java Networking
Java 2 - Iniciacion y Referencia
Learning Programming Learning Java
Web Publisher's 3D & Animation Design Guide for Windows: Your Visual, Step-by-Step Guide to Creating Amazing 3D and Animated Web Pages
Programming Concepts in Java 2nd Edition w/ IBM's VisualAge for Java 2.0 Software
Special Edition Using Enterprise JavaBeans 2.0 (Special Edition Using)
Complte Java Traing Crse & Java Lab Mnl (5th Edition)

Copyright © 2005
*Amazon.com prices and availability subject to change.
Last updated: Wed Aug 20 13:42:51 EDT 2008