Cargando…

TCP/IP sockets in Java : practical guide for programmers /

The networking capabilities of the Java platform have been extended considerably since the first edition of the book. This new edition covers version 1.5-1.7, the most current iterations, as well as making the following improvements: The API (application programming interface) reference sections in...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Calvert, Kenneth L.
Otros Autores: Donahoo, Michael J.
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Amsterdam ; Boston : Elsevier/Morgan Kaufmann, ©2008.
Edición:2nd ed.
Colección:Morgan Kaufmann practical guides series.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 a 4500
001 OR_ocn281598631
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cn|||||||||
008 081212s2008 ne a ob 001 0 eng d
040 |a OPELS  |b eng  |e pn  |c OPELS  |d OPELS  |d OCLCQ  |d OCLCF  |d OCLCO  |d N$T  |d CDX  |d YDXCP  |d IDEBK  |d E7B  |d A7U  |d UMI  |d CEF  |d MHW  |d DEBSZ  |d DEBBG  |d EBLCP  |d VLB  |d DKDLA  |d CHVBK  |d OCLCQ  |d OCLCO  |d MERUC  |d OCLCQ  |d D6H  |d OCLCQ  |d AU@  |d WYU  |d LEAUB  |d OL$  |d VT2  |d OCLCQ  |d UKAHL  |d S2H  |d OCLCO  |d OCLCQ 
019 |a 232973379  |a 428738545  |a 475597132  |a 646747448  |a 700301001  |a 1044296706  |a 1056388052  |a 1062939193  |a 1103263114  |a 1129358540  |a 1202559604  |a 1240508934 
020 |a 9780123742551 
020 |a 0123742552 
020 |a 9780080568782  |q (electronic bk.) 
020 |a 0080568785  |q (electronic bk.) 
029 1 |a AU@  |b 000044592748 
029 1 |a CHBIS  |b 006150923 
029 1 |a CHBIS  |b 009875775 
029 1 |a CHNEW  |b 001007792 
029 1 |a CHVBK  |b 171483766 
029 1 |a CHVBK  |b 198908563 
029 1 |a DEBBG  |b BV039829479 
029 1 |a DEBBG  |b BV042305764 
029 1 |a DEBSZ  |b 355394804 
029 1 |a DEBSZ  |b 405321325 
029 1 |a DEBSZ  |b 430484607 
029 1 |a DKDLA  |b 820120-katalog:9910110106205765 
029 1 |a HEBIS  |b 291468047 
029 1 |a NZ1  |b 13068860 
029 1 |a NZ1  |b 15189705 
029 1 |a AU@  |b 000055626812 
035 |a (OCoLC)281598631  |z (OCoLC)232973379  |z (OCoLC)428738545  |z (OCoLC)475597132  |z (OCoLC)646747448  |z (OCoLC)700301001  |z (OCoLC)1044296706  |z (OCoLC)1056388052  |z (OCoLC)1062939193  |z (OCoLC)1103263114  |z (OCoLC)1129358540  |z (OCoLC)1202559604  |z (OCoLC)1240508934 
037 |a 142074:142219  |b Elsevier Science & Technology  |n http://www.sciencedirect.com 
050 4 |a QA76.625  |b .C35 2008eb 
072 7 |a COM  |x 051310  |2 bisacsh 
072 7 |a COM  |x 051280  |2 bisacsh 
072 7 |a COM  |x 051130  |2 bisacsh 
082 0 4 |a 005.13/3  |2 22 
049 |a UAMI 
100 1 |a Calvert, Kenneth L. 
245 1 0 |a TCP/IP sockets in Java :  |b practical guide for programmers /  |c Kenneth L. Calvert, Michael J. Donahoo. 
250 |a 2nd ed. 
260 |a Amsterdam ;  |a Boston :  |b Elsevier/Morgan Kaufmann,  |c ©2008. 
300 |a 1 online resource (xiv, 177 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a The Morgan Kaufmann practical guides series 
520 |a The networking capabilities of the Java platform have been extended considerably since the first edition of the book. This new edition covers version 1.5-1.7, the most current iterations, as well as making the following improvements: The API (application programming interface) reference sections in each chapter, which describe the relevant parts of each class, have been replaced with (i) a summary section that lists the classes and methods used in the code, and (ii) a?gotchas? section that mentions nonobvious or poorly-documented aspects of the objects. In addition, the book covers several new classes and capabilities introduced in the last few revisions of the Java platform. New abstractions to be covered include NetworkInterface, InterfaceAddress, Inet4/6Address, SocketAddress/InetSocketAddress, Executor, and others; extended access to low-level network information; support for IPv6; more complete access to socket options; and scalable I/O. The example code is also modified to take advantage of new language features such as annotations, enumerations, as well as generics and implicit iterators where appropriate. Most Internet applications use sockets to implement network communication protocols. This book's focused, tutorial-based approach helps the reader master the tasks and techniques essential to virtually all client-server projects using sockets in Java. Chapter 1 provides a genral overview of networking concepts to allow readers to synchronize the concepts with terminology. Chapter 2 introduces the mechanics of simple clients and servers. Chapter 3 covers basic message construction and parsing. Chapter 4 then deals with techniques used to build more robust clients and servers. Chapter 5 (NEW) introduces the scalable interface facilities which were introduced in Java 1.5, including the buffer and channel abstractions. Chapter 6 discusses the relationship between the programming constructs and the underlying protocol implementations in more detail. Programming concepts are introduced through simple program examples accompanied by line-by-line code commentary that describes the purpose of every part of the program. The book's Web site contains many examples of command-based sockets-related code discussed throughout the book. No other resource presents so concisely or so effectively the material necessary to get up and running with Java sockets programming. KEY FEATURES * Focused, tutorial-based instruction in key sockets programming techniques allows reader to quickly come up to speed on Java applications. * Concise and up-to-date coverage of the most recent platform (1.7) for Java applications in networking technology * Provides code for all example programs via a companion Web site to let the reader see the important objects and methods in context and to understand the purpose of each line of code. 
505 0 |a Ch 1: Introduction to Networks, Packets and Protocols -- Ch 2: Basic Sockets -- Ch 3: Sending and Receiving Messages -- Ch 4: Beyond the Basics -- Ch 5: Scalable Interoperability -- Ch 6: Under the Hood. 
504 |a Includes bibliographical references (pages 167-168) and index. 
588 0 |a Print version record. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
610 2 7 |a African Pollinator Initiative  |2 gnd 
650 0 |a Internet programming. 
650 0 |a TCP/IP (Computer network protocol) 
650 0 |a Java (Computer program language) 
650 6 |a Programmation Internet. 
650 6 |a TCP/IP (Protocole de réseaux d'ordinateurs) 
650 6 |a Java (Langage de programmation) 
650 7 |a COMPUTERS  |x Programming Languages  |x C♯  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x Java.  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x Pascal.  |2 bisacsh 
650 7 |a Internet programming.  |2 fast  |0 (OCoLC)fst00977281 
650 7 |a Java (Computer program language)  |2 fast  |0 (OCoLC)fst00982065 
650 7 |a TCP/IP (Computer network protocol)  |2 fast  |0 (OCoLC)fst01141584 
650 7 |a TCP/IP  |2 gnd 
650 7 |a Java  |g Programmiersprache  |2 gnd 
700 1 |a Donahoo, Michael J. 
776 0 8 |i Print version:  |a Calvert, Kenneth L.  |t TCP/IP sockets in Java.  |b 2nd ed.  |d Amsterdam ; Boston : Elsevier/Morgan Kaufmann, ©2008  |z 9780123742551  |z 0123742552  |w (DLC) 2007039444  |w (OCoLC)173502744 
830 0 |a Morgan Kaufmann practical guides series. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9780080568782/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH23088783 
938 |a Coutts Information Services  |b COUT  |n 8375315 
938 |a EBL - Ebook Library  |b EBLB  |n EBL338886 
938 |a ebrary  |b EBRY  |n ebr10229513 
938 |a EBSCOhost  |b EBSC  |n 227500 
938 |a YBP Library Services  |b YANK  |n 2811893 
994 |a 92  |b IZTAP