oder
Loggen Sie sich ein, um 1-Click® einzuschalten.
Alle Angebote
Möchten Sie verkaufen? Hier verkaufen
Java(tm) Network Programming and Distributed Computing
 
Größeres Bild
 
Den Verlag informieren!
Ich möchte dieses Buch auf dem Kindle lesen.

Sie haben keinen Kindle? Hier kaufen oder eine gratis Kindle Lese-App herunterladen.

Java(tm) Network Programming and Distributed Computing [Englisch] [Taschenbuch]

David Reilly , Michael Reilly

Preis: EUR 40,99 kostenlose Lieferung. Siehe Details.
  Alle Preisangaben inkl. MwSt.
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
Gewöhnlich versandfertig in 3 bis 5 Wochen.
Verkauf und Versand durch Amazon.de. Geschenkverpackung verfügbar.

Produktinformation


Mehr über den Autor

David Reilly
Entdecken Sie Bücher, lesen Sie über Autoren und mehr

Besuchen Sie die Seite von David Reilly auf Amazon

Produktbeschreibungen

Kurzbeschreibung

Java's rich, comprehensive networking interfaces make it an ideal platform for building today's networked, Internet-centered applications, components, and Web services. Now, two Java networking experts demystify Java's complex networking API, giving developers practical insight into the key techniques of network development, and providing extensive code examples that show exactly how it's done. David and Michael Reilly begin by reviewing fundamental Internet architecture and TCP/IP protocol concepts all network programmers need to understand, as well as general Java features and techniques that are especially important in network programming, such as exception handling and input/output. Using practical examples, they show how to write clients and servers using UDP and TCP; how to build multithreaded network applications; and how to utilize HTTP and access the Web using Java. The book includes detailed coverage of server-side application development; distributed computing development with RMI and CORBA; and email-enabling applications with the powerful JavaMail API. For all beginning to intermediate Java programmers, network programmers who need to learn to work with Java.

Synopsis

Java's rich, comprehensive networking interfaces make it an ideal platform for building today's networked, Internet-centered applications, components, and Web services. Now, two Java networking experts demystify Java's complex networking API, giving developers practical insight into the key techniques of network development, and providing extensive code examples that show exactly how it's done. David and Michael Reilly begin by reviewing fundamental Internet architecture and TCP/IP protocol concepts all network programmers need to understand, as well as general Java features and techniques that are especially important in network programming, such as exception handling and input/output. Using practical examples, they show how to write clients and servers using UDP and TCP; how to build multithreaded network applications; and how to utilize HTTP and access the Web using Java. The book includes detailed coverage of server-side application development; distributed computing development with RMI and CORBA; and email-enabling applications with the powerful JavaMail API. For all beginning to intermediate Java programmers, network programmers who need to learn to work with Java.

Tags

 (Was ist das?)
Bei einem Tag handelt es sich um ein Schlagwort, das zum Produkt passt.
Tags erleichtern allen Kunden die Suche und die Sortierung ihrer Lieblingsprodukte.
 

Eine digitale Version dieses Buchs im Kindle-Shop verkaufen

Wenn Sie ein Verleger oder Autor sind und die digitalen Rechte an einem Buch haben, können Sie die digitale Version des Buchs in unserem Kindle-Shop verkaufen. Weitere Informationen

Kundenrezensionen

Es gibt noch keine Kundenrezensionen auf Amazon.de
5 Sterne
4 Sterne
3 Sterne
2 Sterne
1 Sterne
Die hilfreichsten Kundenrezensionen auf Amazon.com (beta)
Amazon.com:  7 Rezensionen
7 von 7 Kunden fanden die folgende Rezension hilfreich
Simple to understand, but I prefer a bit of complexity. . . 27. Juli 2002
Von Antonio A. Rodriguez - Veröffentlicht auf Amazon.com
Format:Taschenbuch
Most of my experience in network programming comes from W. Richard Stevens' "UNIX Network Programming", where there's lots of detail in the TCP/IP protocol, and using C to implement it. At the time, the professor teaching the course tried to provide us with comparable programs in Java, but not having a good Java networking book to consult from was a drawback to those segues.

This book serves as an excellent companion to Stevens' book, so that you can get the feel for how Java accomplishes networking capabilities. I still prefer the TCP/IP detail that Stevens' book provides, but that's mainly because I like the language independent concept of networking.

I created a small client2client messaging applet, sent it to a couple of friends for testing, and enjoyed how quickly and easily it was to get it working. Java abstracts a lot of the detail away from the user, since it was designed from the get-go to include networking capabilities, and this book uses those abstractions to its advantage. I'll probably want to get my hands dirty and see how much hands-on control I can get with Java sometime later.

(Reilly*2)'s book is a great way to just jump into network programming without getting your head too tangled with TCP/IP intricacies. This is not to say that the book doesn't cover those details, but it doesn't delve into them as deeply as Stevens' book does. In my view, that's a drawback to it being an absolute reference, but for many who just want to start developing client/server apps, this may be just what you're looking for.

5 von 5 Kunden fanden die folgende Rezension hilfreich
A good intro book 1. Juni 2002
Von uniq - Veröffentlicht auf Amazon.com
Format:Taschenbuch
This book is an introduction to four major areas: networking, Java language, Java network programming, and Java distributed computing. Dozens of published books are specifically dedicated to each of these topics in detail, but this book is trying to give a reader a taste of all these technologies at the same time.

The book is easy to read. Most of the material is clearly explained and illustrated. Code examples (demos) are clean and complete. The demos are not contrived, but present to the reader interesting implementations that may be reused and give a good idea of how programs that are commonly used may work (SMTP, POP clients, HTTP server, etc.). Each of the demos is followed by a detailed explanation that focuses on how the demo works.

I like the book, although I think that the chapters covering Java language programming are extraneous: if you don't know Java, you should learn it from Java language specific books first, and only then venture into the advanced topics of Java network and distributed programming.

The book reminds me somewhat of the classic "Unix Network Programming" by Richard Stevens, which was a must for any C/Unix programmer more than a decade ago.

14 von 18 Kunden fanden die folgende Rezension hilfreich
Java Network Programming 30. April 2002
Von W Boudville - Veröffentlicht auf Amazon.com
Format:Taschenbuch
Do you already program in Java? Do you want to go
beyond building neat GUIs for applets or desktop
applications? Java has two great strengths. It was
built with graphical objects (widgets) being an
inherent part of the language. This is an immense
strategic advantage over earlier text-based languages
like C and C++. For graphics, those needed special
graphics libraries that were not part of the original
languages, and which varied from vendor to vendor and
between operating systems. The ease of use of Java
widgets led to its rapid gain of programmers'
mindshare. Indeed, if you look at a row of Java books
in a bookstore, you will see most packed with
attractive diagrams of cool graphics.

But there is a second great advantage of Java. It was
designed with Internet awareness from its inception. C
and C++, due to their earlier vintage, have to use
libraries that vary with the operating system. Java
gives you a consistent interface to network
programming, independent of the operating system. It
is to this exposition that this book from Addison-Wesley
is devoted. Written by two Queenslanders, it assumes
that you already know the rudiments of Java. This is not
a book for tyros. If you want to write a network client
(for example, a specialised mail reader), or a multiplayer
online game, or a software agent that trolls the Internet,
then this book can be very useful.

It describes how to use TCP sockets, UDP datagrams,
multithreading, HTTP and other topics. It expands on
CGI for building applets. For client-server
applications, it devotes entire chapters to servlets
and RMI (Remote Method Invocation). If you need to use
CORBA, maybe because you have some legacy code that
you want to write a Java program to interact with,
then you will find a chapter expounding on it.

If you have already been programming Java GUIs, then
this book will expose you to a more abstract class
of problems. There is no visual feedback from widget

layouts here. What feedback you get is from text-based
output. What you have to design against are problems
based on data flow across a network.

The authors have written clearly, and the code
examples are well done, illustrating simply the
desired concepts, without tangling you in the details.

The only slight critique I have is that there is no
comparative assessment of the network capabilities of
Java vis-a-vis C#/.NET. The latter pair is an even
newer language/programming environment that also has
networking built in. But this may be unfair and
straying from the book's scope. C# and .NET have just
been released by Microsoft, and it is not certain if
they will gain much traction. But if they do, you will
undoubtedly see many books arguing the relative
merits.


Kunden diskutieren

Das Forum zu diesem Produkt
Diskussion Antworten Jüngster Beitrag
Noch keine Diskussionen

Fragen stellen, Meinungen austauschen, Einblicke gewinnen
Neue Diskussion starten
Thema:
Erster Beitrag:
Eingabe des Log-ins
 


Aktive Diskussionen in ähnlichen Foren
Kundendiskussionen durchsuchen
Alle Amazon-Diskussionen durchsuchen
   
Ähnliche Foren


Lieblingslisten


Ähnliche Artikel finden


Anhand des Sachgebietes nach ähnlichen Produkten suchen:


Ihr Kommentar


Datenschutzerklärung von Amazon.de Versandbedingungen von Amazon.de Umtausch- & Rücknahme bei Amazon.de