English Deutsch Français 简体中文 繁體中文
Book123, Download eBooks for Free - Anytime! Submit your article

Categories

Share With Friends



Like Book123?! Give us +1

Archive by Date

Search Tag

Newest

Useful Links


EBook Torrents Prentice.Hall.Core.Java.Volume.2.Advanced.Features.8th.Edition.A

Posted on 2010-04-16




Name:EBook Torrents Prentice.Hall.Core.Java.Volume.2.Advanced.Features.8th.Edition.A
ASIN/ISBN:0132354799
File size:19.9 Mb
   EBook Torrents Prentice.Hall.Core.Java.Volume.2.Advanced.Features.8th.Edition.A

Free Download Now     Free register and download UseNet downloader, then you can FREE Download from UseNet.

    Download without Limit " EBook Torrents Prentice.Hall.Core.Java.Volume.2.Advanced.Features.8th.Edition.A " from UseNet for FREE!
* Paperback: 1056 pages

* Publisher: Prentice Hall PTR; 8 edition (April 18, 2008)

* Language: English

* ISBN-10: 0132354799

* ISBN-13: 978-0132354790

Product Description

The revised edition of the classic Core Java�, Volume II�Advanced Features, covers advanced user-interface programming and the enterprise features of the Java SE 6 platform. Like Volume I (which covers the core language and library features), this volume has been updated for Java SE 6 and new coverage is highlighted throughout. All sample programs have been carefully crafted to illustrate the latest programming techniques, displaying best-practices solutions to the types of real-world problems professional developers encounter.

Volume II includes new sections on the StAX API, JDBC 4, compiler API, scripting framework, splash screen and tray APIs, and many other Java SE 6 enhancements. In this book, the authors focus on the more advanced features of the Java language, including complete coverage of

*

Streams and Files

*

Networking

*

Database programming

*

XML

*

JNDI and LDAP

*

Internationalization

*

Advanced GUI components

*

Java 2D and advanced AWT

*

JavaBeans

*

Security

*

RMI and Web services

*

Collections

*

Annotations

*

Native methods

For thorough coverage of Java fundamentals�including interfaces and inner classes, GUI programming with Swing, exception handling, generics, collections, and concurrency�look for the eighth edition of Core Java�, Volume I�Fundamentals (ISBN: 978-0-13-235476-9).

About the Author

Cay S. Horstmann is also coauthor of Core JavaServer Faces, Second Edition (Prentice Hall, 2007). Cay is a professor of computer science at San Jose State University, a Java Champion, and a frequent speaker at computer industry conferences.

Gary Cornell has been writing and teaching programming professionals for more than twenty years and is the cofounder of Apress. He has written numerous best-selling books for programming professionals, was a cofinalist for a Jolt Award, and won the Readers\& 039; Choice award from Visual Basic Magazine.

Excerpt. © Reprinted by permission. All rights reserved.

To the Reader

The book you have in your hands is the second volume of the eighth edition of Core Java�, fully updated for Java SE 6. The first volume covers the essential features of the language; this volume covers the advanced topics that a programmer will need to know for professional software development. Thus, as with the first volume and the previous editions of this book, we are still targeting programmers who want to put Java technology to work on real projects.

Please note: If you are an experienced developer who is comfortable with advanced language features such as inner classes and generics, you need not have read the first volume in order to benefit from this volume. While we do refer to sections of the previous volume when appropriate (and, of course, hope you will buy or have bought Volume I), you can find the needed background material in any comprehensive introductory book about the Java platform.

Finally, when any book is being written, errors and inaccuracies are inevitable. We would very much like to hear about them should you find any in this book. Of course, we would prefer to hear about them only once. For this reason, we have put up a web site at http://horstmann.com/corejava with an FAQ, bug fixes, and workarounds. Strategically placed at the end of the bug report web page (to encourage you to read the previous reports) is a form that you can use to report bugs or problems and to send suggestions for improvements to future editions.

About This Book

The chapters in this book are, for the most part, independent of each other. You should be able to delve into whatever topic interests you the most and read the chapters in any order.

The topic of Chapter 1 is input and output handling. In Java, all I/O is handled through so-called streams. Streams let you deal, in a uniform manner, with communications among various sources of data, such as files, network connections, or memory blocks. We include detailed coverage of the reader and writer classes, which make it easy to deal with Unicode. We show you what goes on under the hood when you use the object serialization mechanism, which makes saving and loading objects easy and convenient. Finally, we cover the �new I/O� classes (which were new when they were added to Java SE 1.4) that support efficient file operations, and the regular expression library.

Chapter 2 covers XML. We show you how to parse XML files, how to generate XML, and how to use XSL transformations. As a useful example, we show you how to specify the layout of a Swing form in XML. This chapter has been updated to include the XPath API, which makes �finding needles in XML haystacks� much easier.

Chapter 3 covers the networking API. Java makes it phenomenally easy to do complex network programming. We show you how to make network connections to servers, how to implement your own servers, and how to make HTTP connections.

Chapter 4 covers database programming. The main focus is on JDBC, the Java database connectivity API that lets Java programs connect to relational databases. We show you how to write useful programs to handle realistic database chores, using a core subset of the JDBC API. (A complete treatment of the JDBC API would require a book almost as long as this one.) We finish the chapter with a brief introduction into hierarchical databases and discuss JNDI (the Java Naming and Directory Interface) and LDAP (the Lightweight Directory Access Protocol).

Chapter 5 discusses a feature that we believe can only grow in importance�internationalization. The Java programming language is one of the few languages designed from the start to handle Unicode, but the internationalization support in the Java platform goes much further. As a result, you can internationalize Java applications so that they not only cross platforms but cross country boundaries as well. For example, we show you how to write a retirement calculator applet that uses either English, German, or Chinese languages�depending on the locale of the browser.

Chapter 6 contains all the Swing material that didn�t make it into Volume I, especially the important but complex tree and table components. We show the basic uses of editor panes, the Java implementation of a �multiple document� interface, progress indicators that you use in multithreaded programs, and �desktop integration features� such as splash screens and support for the system tray. Again, we focus on the most useful constructs that you are likely to encounter in practical programming because an encyclopedic coverage of the entire Swing library would fill several volumes and would only be of interest to dedicated taxonomists.

Chapter 7 covers the Java 2D API, which you can use to create realistic drawings and special effects. The chapter also covers some advanced features of the AWT (Abstract Windowing Toolkit) that seemed too specialized for coverage in Volume I but are, nonetheless, techniques that should be part of every programmer�s toolkit. These features include printing and the APIs for cut-and-paste and drag-and-drop.

Chapter 8 shows you what you need to know about the component API for the Java platform�JavaBeans. We show you how to write your own beans that other programmers can manipulate in integrated builder environments. We conclude this chapter by showing you how you can use JavaBeans persistence to store your own data in a format that�unlike object serialization�is suitable for long-term storage.

Chapter 9 takes up the Java security model. The Java platform was designed from the ground up to be secure, and this chapter takes you under the hood to see how this design is implemented. We show you how to write your own class loaders and security managers for special-purpose applications. Then, we take up the security API that allows for such important features as message and code signing, authorization and authentication, and encryption. We conclude with examples that use the AES and RSA encryption algorithms.

Chapter 10 covers distributed objects. We cover RMI (Remote Method Invocation) in detail. This API lets you work with Java objects that are distributed over multiple machines. We then briefly discuss web services and show you an example in which a Java program communicates with the Amazon Web Service.

Chapter 11 discusses three techniques for processing code. The scripting and compiler APIs, introduced in Java SE 6, allow your program to call code in scripting languages such as JavaScript or Groovy, and to compile Java code. Annotations allow you to add arbitrary information (sometimes called metadata) to a Java program. We show you how annotation processors can harvest these annotations at the source or class file level, and how annotations can be used to influence the behavior of classes at runtime. Annotations are only useful with tools, and we hope that our discussion will help you select useful annotation processing tools for your needs.

Chapter 12 takes up native methods, which let you call methods written for a specific machine such as the Microsoft Windows API. Obviously, this feature is controversial: Use native methods, and the cross-platform nature of the Java platform vanishes. Nonetheless, every serious programmer writing Java applications for specific platforms needs to know these techniques. At times, you need to turn to the operating system�s API for your target platform when you interact with a device or service that is not supported by the Java platform. We illustrate this by showing you how to access the registry API in Windows from a Java program.

As always, all chapters have been completely revised for the latest version of Java. Outdated material has been removed, and the new APIs of Java SE 6 are covered in detail.

Rating:

2.5 out of 5 by

 
Download Links
  ServerStatus


No download url, please check the above content. Free download from UseNet >>

Can not download? Search other download URLs here >>

Buy This Book at Best Price >>

Like this article?! Give us +1:

Related Articles


Technical Core Java(TM) 2, Volume II--Advanced Features (7th Edition)

Technical Core Java(TM) 2, Volume II--Advanced Features (7th Edition)

Author: Cay Horstmann, Gary CornellPublisher: Prentice Hall PTRPublish Date: 22 November, 2004ISBN: 0131118269

Technical Core Java 2, Volume II: Advanced Features (5th Edition)

Technical Core Java 2, Volume II: Advanced Features (5th Edition)

Author: Cay S. Horstmann, Gary Cornell, Cay HorstmannPublisher: Pearson Higher EducationPublish Date: 10 December, 2001ISBN: 0130927384

Technical Core Java.2.Volume II Advanced Features.7th Edition

Technical Core Java.2.Volume II Advanced Features.7th Edition

Technical Core Java 2 Volume II Advanced Features 7th Edition

Technical Core Java 2 Volume II Advanced Features 7th Edition

EBook Torrents Core Java 2 - Volume II - Advanced Features, 7th Edition

EBook Torrents Core Java 2 - Volume II - Advanced Features, 7th Edition

C/C++/C# Core Java 2, Volume II - Advanced Features (7th Edition)

C/C++/C# Core Java 2, Volume II - Advanced Features (7th Edition)

Share this page with your friends now!
Text link
Forum (BBCode)
Website (HTML)
Tags:
Prentice   Hall   Volume   Core   Edition  
 

DISCLAIMER:

This site does not store EBook Torrents Prentice.Hall.Core.Java.Volume.2.Advanced.Features.8th.Edition.A on its server. We only index and link to EBook Torrents Prentice.Hall.Core.Java.Volume.2.Advanced.Features.8th.Edition.A provided by other sites. Please contact the content providers to delete EBook Torrents Prentice.Hall.Core.Java.Volume.2.Advanced.Features.8th.Edition.A if any and email us, we'll remove relevant links or contents immediately.

Comments (0) All

Verify: Verify

    Sign In   Not yet a member?

Sign In | Not yet a member?