Home > Store

Core Java 2, Volume II--Advanced Features, 5th Edition

Register your product to gain access to bonus material or receive a coupon.

Core Java 2, Volume II--Advanced Features, 5th Edition

Book

  • Sorry, this book is no longer in print.
Not for Sale

About

Features

  • NEW - Fully updated for Sun's JDK 2 Version 1.3 and 1.4.
    • Covers the newest version of Java that has been proven in widespread use. Ex.___

  • NEW - Expanded coverage of networking, native methods, and remote objects.
    • Introduces advanced techniques that students will need to build applications that perform well in distributed, heterogeneous environments. Ex.___

  • NEW - Enhanced coverage of the Java security model.
    • Helps students build applications that deliver strong security without compromising usability or reliability. Ex.___

  • NEW - Detailed coverage of XML and servlets.
    • Enables students to build the applications now in greatest demand, including server-side Web applications, as well as software that integrates existing enterprise, partner, and customer systems. Ex.___

  • Advanced GUI-building techniques—Includes detailed chapters on building Java GUIs with both AWT and Swing.
    • Helps students build highly usable, efficient interfaces that leverage all of JDK 1.3's and 1.4's capabilities, not just a single approach. Ex.___

  • JDBC database integration, in depth—Includes a full chapter on using Java to access and edit enterprise databases.
    • Helps students learn how to solve real-world problems that involve enterprise data stores, as they gain true mastery over JDBC—one of the most widely used components of Java 2 Enterprise Edition. Ex.___

  • Practical techniques for internationalizing software—Demonstrates how to use Java's internationalization features to build software that can easily be adapted for users worldwide.
    • Reflects the increasingly global nature of software development; enables students to build systems that are easily adaptable to global markets, and therefore have greater business value. Ex.___

  • Extensive development resources on CD-ROM—CD-ROM includes all source code, JDK 1.3 and 1.4, Forte for Java Community Edition, and much more.
    • Gives students powerful Sun Microsystems tools and resources for running and adapting the book's code. Ex.___

Description

  • Copyright 2002
  • Edition: 5th
  • Book
  • ISBN-10: 0-13-092738-4
  • ISBN-13: 978-0-13-092738-5

  • The experienced developer's advanced guide to the Java 2 platform—fully updated for JDK 1.3 release and JDK 1.4 release, Standard Edition.
  • Even more robust, real-world code samples than ever before!
  • New and revamped coverage: XML, security, networking, multithreading, collections, remote objects, JDBC API, JavaBeans component architecture, Swing, and much more
  • CD-ROM includes all the code examples, Forte for Java, Release 2.0, Community Edition, and the current version of the Java 2 SDK, Standard Edition for Windows, Solaris OE (SPARC/x86), and Linux.

The #1 advanced guide for serious programmers-fully updated for JDK 1.3 release and JDK 1.4 release.

An indispensable companion to the best-selling Core Java 2, Vol. I--Fundamentals (0-13-089468-0), Core Java 2, Volume II: Advanced Features is now available in a revised and expanded fifth edition. It delivers the same real-world guidance you need to solve even the most challenging programming problems and offers an all-new chapter on XML and Java, plus thoroughly revamped coverage of many advanced features—from collections to native methods, security to Swing.

Cay Horstmann identifies the problems experienced Java platform developers encounter most often, and delivers insightful, expert-level guidance for addressing them-together with even more of the robust, sample code that have made Core Java an international bestseller for five straight years. You'll gain new insights into networking, remote objects, JDBC API, internationalization, and a whole lot more.

For experienced programmers, Core Java 2, Volume 2: Advanced Features provides the answers that they need to take full advantage of the power of Java technology and to get the job done as efficiently as possible.

State-of-the-art information for advanced Java technology development, including:

  • Thoroughly updated coverage of multithreading, collections, and networking
  • Completely revised coverage of remote objects
  • Detailed new chapter on XML and Java
  • Sophisticated new techniques for utilizing JavaBeans(tm) component architecture
  • Advanced GUI-building techniques leveraging both Swing and AWT
About the CD-ROM

The accompanying CD-ROM contains complete source code examples, Forte for Java, Release 2.0, Community Edition, and the Java 2 SDK, Standard Edition.

Downloads

Downloads

To facilitate your work with Core Java 2, we are making available for download the code examples for the books below:

Sample Content

Online Sample Chapter

Adding Multithreading Capability to Your Java Applications

Table of Contents



Preface.


To the Reader.


About This Book.


Conventions.


Definitions.


Acknowledgments.


1. Multithreading.

What Are Threads? Using Threads to Give Other Tasks a Chance. Running and Starting Threads. Running Multiple Threads. The Runnable Interface. Interrupting Threads. Thread Properties. Thread States. Moving Out of a Blocked State. Dead Threads. Daemon Threads. Thread Groups. Thread Priorities. Selfish Threads. Synchronization. Thread Communication Without Synchronization. Synchronizing Access to Shared Resources. Object Lock. The wait and notify Methods. Synchronized Blocks. Synchronized Static Methods. Deadlocks. Why the stop and suspend Methods Are Deprecated. Timeouts. User Interface Programming with Threads. Threads and Swing. Animation. Timers. Progress Bars. Progress Monitors. Monitoring the Progress of Input Streams. Using Pipes for Communication Between Threads.



2. Collections.

Collection Interfaces. Separating Collection Interfaces and Implementation. Collection and Iterator Interfaces in the Java Library. Concrete Collections. Linked Lists. Array Lists. Hash Sets. Tree Sets. Maps. Specialized Map Classes. The Collections Framework. Views and Wrappers. Bulk Operations. Interfacing with Legacy APIs. Algorithms. Sorting and Shuffling. Binary Search. Simple Algorithms. Writing Your Own Algorithms. Legacy Collections. The Hashtable Class. Enumerations. Property Sets. Stacks. Bit Sets.



3. Networking.

Connecting to a Server. Implementing Servers. Serving Multiple Clients. Sending E-Mail. Advanced Socket Programming. URL Connections. URLs and URIs. Using a URLConnection to Retrieve Information. Posting Form Data. CGI Scripts and Servlets. Sending Data to a Web Server. Harvesting Information from the Web. Applet Security. Proxy Servers. Testing the WeatherReport Applet.



4. Database Connectivity: JDBC.

The Design of JDBC. Typical Uses of JDBC. The Structured Query Language. Installing JDBC. Basic JDBC Programming Concepts. Database URLs. Making the Connection. Executing SQL Commands. Advanced SQL Types (JDBC 2). Populating a Database. Executing Queries. Scrollable and Updatable Result Sets. Scrollable Result Sets (JDBC 2). Updatable Result Sets (JDBC 2). Metadata. Transactions. Batch Updates (JDBC 2). Advanced Connection Management.



5. Remote Objects.

Introduction to Remote Objects: The Roles of Client and Server. Remote Method Invocations. Stubs and Parameter Marshalling. Dynamic Class Loading. Setting Up Remote Method Invocation. Interfaces and Implementations. Locating Server Objects. The Client Side. Preparing for Deployment. Deploying the Program. Parameter Passing in Remote Methods. Passing Nonremote Objects. Passing Remote Objects. Using Remote Objects in Sets. Cloning Remote Objects. Inappropriate Remote Parameters. Using RMI with Applets. Server Object Activation. Java IDL and CORBA. The Interface Definition Language. A CORBA Example. Implementing CORBA Servers.



6. Advanced Swing.

Lists. The JList Component. List Models. Inserting and Removing Values. Rendering Values. Trees. Simple Trees. Node Enumeration. Rendering Nodes. Listening to Tree Events. Custom Tree Models. Tables. A Simple Table. Table Models. A Sort Filter. Cell Rendering and Editing. Working with Rows and Columns. Selecting Rows, Columns, and Cells. Styled Text Components. Component Organizers. Split Panes. Tabbed Panes. Desktop Panes and Internal Frames. Cascading and Tiling. Vetoing Property Settings.



7. Advanced AWT.

The Rendering Pipeline. Shapes. Using the Shape Classes. Areas. Strokes. Paint. Coordinate Transformations. Clipping. Transparency and Composition. Rendering Hints. Reading and Writing Images. Obtaining Readers and Writers for Image File Types. Reading and Writing Files with Multiple Images. Image Manipulation. Accessing Image Data. Filtering Images. Printing. Printing Graphics. Printing Multiple Pages. Print Preview. Print Services. Stream Print Services. Printing Attributes. The Clipboard. Classes and Interfaces for Data Transfer. Transferring Text. The Transferable Interface and Data Flavors. Building an Image Transferable. Using a Local Clipboard to Transfer Object References. Transferring Java Objects via the System Clipboard. Drag and Drop. Drop Targets. Drag Sources. Data Transfer Support in Swing.



8. JavaBeans”.

Why Beans? The Bean-Writing Process. Using Beans to Build an Application. Packaging Beans in JAR files. Composing Beans in a Builder Environment. Naming Patterns for Bean Properties and Events. Bean Property Types. Simple Properties. Indexed Properties. Bound Properties. Constrained Properties. Adding Custom Bean Events. Property Editors. Writing a Property Editor. Going Beyond Naming Patterns. FeatureDescriptor Objects. Customizers. Writing a Customizer Class. The Bean Context. Advanced Uses of Introspection. Finding Sibling Beans. Using Bean Context Services.



9. Security.

Class Loaders. Writing Your Own Class Loader. Bytecode Verification. Security Managers and Permissions. Java 2 Platform Security. Security Policy Files. Custom Permissions. Implementing a Permission Class. A Custom Security Manager. User Authentication. Digital Signatures. Message Digests. Message Signing. Message Authentication. The X.509 Certificate Format. Generating Certificates. Signing Certificates. Code Signing. Signing JAR Files. Deployment Tips. Software Developer Certificates. Encryption. Symmetric Ciphers. Public Key Ciphers. Cipher Streams.



10. Internationalization.

Locales. Numbers and Currencies. Date and Time. Text. Collation (Ordering). Text Boundaries. Message Formatting. Choice Formats. Character Set Conversion. International Issues and Source Files. Resource Bundles. Locating Resources. Placing Resources into Bundles. Graphical User Interface Localization. Localizing an Applet.



11. Native Methods.

Calling a C Function from the Java Programming Language. Working with the printf Function. Numeric Parameters and Return Values. Using printf for Formatting Numbers. String Parameters. Calling sprintf in a Native Method. Accessing Object Fields. Accessing Static Fields. Signatures. Calling Java Methods. Nonstatic Methods. Static Methods. Constructors. Alternative Method Invocations. Arrays. Error Handling. The Invocation API. A Complete Example: Accessing the Windows Registry. An Overview of the Windows Registry. A Java Platform Interface for Accessing the Registry. Implementing the Registry Access Functions as Native Methods.



12. XML.

An Introduction to XML. The Structure of an XML Document. Parsing an XML Document. Document Type Definitions. A Practical Example. Namespaces. Using the SAX Parser. Generating XML Documents. XSL Transformations.



Index.

Updates

Errata

View the updates and bug reports for Volumes 1 and 2 of Core Java, Fifth Edition (J2SE 1.3/1.4).

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020