注冊 | 登錄讀書好,好讀書,讀好書!
讀書網(wǎng)-DuShu.com
當(dāng)前位置: 首頁出版圖書科學(xué)技術(shù)計算機/網(wǎng)絡(luò)軟件與程序設(shè)計JAVA及其相關(guān)JAVA實例技術(shù)手冊(影印版)

JAVA實例技術(shù)手冊(影印版)

JAVA實例技術(shù)手冊(影印版)

定 價:¥68.00

作 者: (美)David Flanagan著
出版社: 清華大學(xué)出版社
叢編項:
標(biāo) 簽: Java

ISBN: 9787302067511 出版時間: 2003-11-01 包裝: 平裝
開本: 23cm 頁數(shù): 566 字?jǐn)?shù):  

內(nèi)容簡介

  《Java實例技術(shù)手冊》(中文版)本書涵蓋的主題包括:·用來闡述基本Java功能和關(guān)鍵APl的實例,包括I/0、線程、網(wǎng)絡(luò)、安全、映像和串行化?!な褂脠D形用戶界面和Java圖形特性的程序,重點介紹的是Swing、Java2D、打印、數(shù)據(jù)傳輸、JavaBeaus和appletAPl.·用來解釋關(guān)鍵性企業(yè)級APl的實例,包括遠(yuǎn)程方法調(diào)用、數(shù)據(jù)庫連接、servlet、JSP和XML?!け緯詈蟾綆Я艘粋€實例索引,使讀者能夠方便地找到編程概念或Java類,也能夠方便地找到用于闡述某個概念或使用了某個類的實例。本書完全由實際的Java程序?qū)嵗龢?gòu)成,內(nèi)容涉及Java1.3,包含了164個完整、實用的實例:超過17900行的代碼注釋涵蓋了20種不同的JavaAPI,包括servlet、JSP、XML、Swing和Java2D。最暢銷的《JavainaNutshell》的作者親自編寫了本書所有的實例代碼,讀者可以從中學(xué)習(xí)Java語言,也可以對這些代碼進(jìn)行修改為自己所用。如果你喜歡按照實例去學(xué)習(xí),那么本書正是你的最佳選擇!本書是《JavainaNutshell》,《JavaFoundationClassesinaNutshell》和《JavaEnterpriseinaNutshell》的姐妹篇。盡管這三本書屬于速查手冊,但其中仍然對各種Java主題提供了速成指南。面本書則是彌補這些書所遺漏的一些內(nèi)容,為Java新手提供了一系列的實例代碼,當(dāng)然,這些代碼對于那些經(jīng)驗豐富的編程老手來說也同樣適用。本書并沒有限制讀者的發(fā)揮,或僅僅對Java的語法或方法調(diào)用進(jìn)行詳細(xì)的解釋,而是展示了一些具有完美注釋的優(yōu)秀代碼實例,從而幫助讀者最大程度地認(rèn)識Java。本書的每一章都包含了編程練習(xí),有助于讀者鞏固所學(xué)到的知識。

作者簡介

暫缺《JAVA實例技術(shù)手冊(影印版)》作者簡介

圖書目錄

Preface
Part I: Core java APIs
Chapter 1 -- Java Basics
   Hello World
   FizzBuzz
   The Fibonacci Series
   Using Command-Line Arguments
   Echo in Reverse
   FizzBuzz Switched
   Computing Factorials
   Recursive Factorials
   Caching Factorials
   Computing Big Factorials
   Handling Exceptions
   Interactive Input
   Using a StringBuffer
   Sorting Numbers
   Computing Primes
   Exercises
Chapter 2 -- Objects, Classes, and Interfaces
   A Rectangle Class
   Testing the Rect Class
   A Rect Subclass
   Another Subclass
   Complex Numbers
   Computing Pseudo-Random Numbers
   Computing Statistics
   A Linked List Class
   Advanced Sorting
   Exercises
Chapter 3 -- Input/Output
   Files and Streams
   Working with Files
   Copying File Contents
   Reading and Displaying Text Files
   Listing Directory and File Information
   Compressing Files and Directories
   Filtering Character Streams
   Filtering Lines of Text
   A Custom HTML Output Stream
   Exercises
Chapter 4 -- Threads
   Thread Basics
   Threads and Thread Groups
   Deadlock
   Timers
   Exercises
Chapter 5 -- Networking
   Downloading the Contents of a URL
   Using a URLConnection
   Sending Email Through a URLConnection
   Connecting to a Web Server
   A Simple Web Server
   A Proxy Server
   Networking with Applets
   A Generic Client
   A Generic Multithreaded Server
   A Multithreaded Proxy Server
   Sending Datagrams
   Receiving Datagrams
   Exercises
Chapter 6 -- Security and Cryptography
   Running Untrusted Code
   Loading Untrusted Code
   Message Digests and Digital Signatures
   Cryptography
   Exercises
Chapter 7 -- Internationalization
   A Word About Locales
   Unicode
   Character Encodings
   Handling Local Customs
   Localizing User-Visible Messages
   Formatted Messages
   Exercises
Chapter 8 -- Reflection
   Obtaining Class and Member Information
   Invoking a Named Method
   Exercises
Chapter 9 -- Object Serialization
   Simple Serialization
   Custom Serialization
   Externalizable Classes
   Serialization and Class Versioning
   Serialized Applets
   Exercises
Part II: Graphics and GUIs
Chapter 10 -- Graphical User Interfaces
   Components
   Containers
   Layout Management
   Event Handling
   A Complete GUI
   Actions and Reflection
   Custom Dialogs
   Displaying Tables
   Displaying Trees
   A Simple Web Browser
   Describing GUIs with Properties
   Themes and the Metal Look-and-Feel
   Custom Components
   Exercises
Chapter 11 -- Graphics
   Graphics Before Java 1.2
   The Java 2D API
   Drawing and Filling Shapes
   Transforms
   Line Styles with BasicStroke
   Stroking Lines
   Filling Shapes with Paint
   Antialiasing
   Combining Colors with AlphaComposite
   Image Processing
   A Custom Shape
   Custom Strokes
   Custom Paint
   Advanced Animation
   Displaying Graphics Examples
   Exercises
Chapter 12 -- Printing
    Printing with the Java 1.1 API
    Printing with the Java 1.2 API
    Printing Multipage Text Documents
    Printing Swing Documents
    Exercises
Chapter 13 -- Data Transfer
   Data Transfer Architecture
   Simple Copy-and-Paste
   A Transferable Data Type
   Cutting and Pasting Scribbles
   Dragging and Dropping Scribbles
   Exercises
Chapter 14 -- JavaBeans
   Bean Basics
   A Simple Bean
   A More Complex Bean
   Custom Events
   Specifying Bean Information
   Defining a Simple Property Editor
   Defining a Complex Property Editor
   Defining a Bean Customizer
   Exercises
Chapter 15 -- Applets
   Introduction to Applets
   A First Applet
   A Clock Applet
   Applets and the Java 1.0 Event Model
   Java 1.0 Event Details
   Reading Applet Parameters
   Images and Sounds
   JAR Files
   Exercises
Part III: Enterprise Java
Chapter 16 -- Remote Method Invocation
   Remote Banking
   A Bank Server
   A Multiuser Domain
   Remote MUD Interfaces
   The MUD Server
   The MudPlace Class
   The MudPerson Class
   A MUD Client
   Advanced RMI
   Exercises
Chapter 17 -- Database Access with SQL
   Accessing a Database
   Using Database Metadata
   Building a Database
   Using the API Database
   Atomic Transactions
   Exercises
Chapter 18 -- Servlets and JSP
   Servlet Setup
   A Hello World Servlet
   Servlet Initialization and Persistence: A Counter Servlet
   Database Access with Servlets
   A Login Screen with JSP
   Request Forwarding
   JSP Pages and JavaBeans
   Ending a User Session
   Custom Tags
   Deploying a Web Application
   Exercises
Chapter 19 -- XML
   Parsing with JAXP and SAX 1
   Parsing with SAX 2
   Parsing and Manipulating with JAXP and DOM
   Traversing a DOM Tree
   Traversing a Document with DOM Level 2
   The JDOM API
   Exercises
Chapter 20 -- Example Index
Index

本目錄推薦

掃描二維碼
Copyright ? 讀書網(wǎng) m.ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號 鄂公網(wǎng)安備 42010302001612號