×
卷II:高级特性-JAVA核心技术-(上.下册)-(第9版:英文版)

卷II:高级特性-JAVA核心技术-(上.下册)-(第9版:英文版)

1星价 ¥92.8 (7.8折)
2星价¥92.8 定价¥119.0
暂无评论
图文详情
  • ISBN:9787115380388
  • 装帧:一般胶版纸
  • 册数:暂无
  • 重量:暂无
  • 开本:16开
  • 页数:全3册
  • 出版时间:2015-05-01
  • 条形码:9787115380388 ; 978-7-115-38038-8

本书特色

《java核心技术 卷ii:高级特性(第9版 英文版)》是java技术权威指南,全面覆盖java技术的高级主题,包括输入输出流、xml、网络api、数据库编程、高级swing、java 2d api、javabean构件、安全、分布式对象、脚本、编译与注解处理等,同时涉及本地化、国际化以及java se 7的内容。本书对java技术的阐述精确到位,叙述方式深入浅出,并包含大量程序示例,让读者充分理解java语言以及java类库的相关高级特性。本书适合想将java应用于实际项目的软件开发人员、高等院校教师和学生参考阅读。

内容简介

java经典图书*新版,前一版曾获得第13届jolt生产效率大奖。   java平台的权威指南,介绍了java支持企业级开发和桌面应用开发的*强大特性。新版做了全面更新,体现了java se 7的变化,并将对java se 7新特性的完整描述融入对java基本概念的精辟阐述中。   专为做实际项目的程序员编写,是一本真实可信、不偏不倚且简单直接的java教程,书中使用了全面测试过的代码示例来阐述关键的java语言与库的特性,体现了*佳的编程实践。   两位作者均是业内权威人物,有丰富的写作和实战经验。

目录

上册
chapter 1: streams and files
  1.1 streams
    1.1.1 reading and writing bytes
    1.1.2 the complete stream zoo
    1.1.3 combining stream filters
  1.2 text input and output
    1.2.1 how to write text output
    1.2.2 how to read text input
    1.2.3 saving objects in text format
    1.2.4 character sets
  1.3 reading and writing binary data
    1.3.1 random-access files
  1.4 zip archives
  1.5 object streams and serialization
    1.5.1 understanding the object serialization file format
    1.5.2 modifying the default serialization mechanism
    1.5.3 serializing singletons and typesafe enumerations
    1.5.4 versioning
    1.5.5 using serialization for cloning
  1.6 working with files
    1.6.1 paths
    1.6.2 reading and writing files
    1.6.3 copying, moving, and deleting files
    1.6.4 creating files and directories
    1.6.5 getting file information
    1.6.6 iterating over the files in a directory
    1.6.7 zip file systems
  1.7 memory-mapped files
    1.7.1 the buffer data structure
    1.7.2 file locking
    1.8 regular expressions
chapter 2: xml
  2.1 introducing xml
    2.1.1 the structure of an xml document
  2.2 parsing an xml document
  2.3 validating xml documents
    2.3.1 document type definitions
    2.3.2 xml schema
    2.3.3 a practical example
  2.4 locating information with xpath
  2.5 using namespaces
  2.6 streaming parsers
    2.6.1 using the sax parser
    2.6.2 using the stax parser
  2.7 generating xml documents
    2.7.1 documents without namespaces
    2.7.2 documents with namespaces
    2.7.3 writing documents
    2.7.4 an example: generating an svg file
    2.7.5 writing an xml document with stax
  2.8 xsl transformations
chapter 3: networking
  3.1 connecting to a server
    3.1.1 socket timeouts
    3.1.2 internet addresses
  3.2 implementing servers
    3.2.1 serving multiple clients
    3.2.2 half-close
  3.3 interruptible sockets
  3.4 getting web data
    3.4.1 urls and uris
    3.4.2 using a urlconnection to retrieve information
    3.4.3 posting form data
  3.5 sending e-mail
chapter 4: database programming
  4.1 the design of jdbc
    4.1.1 jdbc driver types
    4.1.2 typical uses of jdbc
  4.2 the structured query language
  4.3 jdbc configuration
    4.3.1 database urls
    4.3.2 driver jar files
    4.3.3 starting the database
    4.3.4 registering the driver class
    4.3.5 connecting to the database
  4.4 executing sql statements
    4.4.1 managing connections, statements, and result sets
    4.4.2 analyzing sql exceptions
    4.4.3 populating a database
  4.5 query execution
    4.5.1 prepared statements
    4.5.2 reading and writing lobs
    4.5.3 sql escapes
    4.5.4 multiple results
    4.5.5 retrieving autogenerated keys
  4.6 scrollable and updatable result sets
    4.6.1 scrollable result sets
    4.6.2 updatable result sets
  4.7 row sets
    4.7.1 constructing row sets
    4.7.2 cached row sets
  4.8 metadata
  4.9 transactions
    4.9.1 save points
    4.9.2 batch updates
    4.9.3 advanced sql types
  4.10 connection management in web and enterprise applications
chapter 5: internationalization
  5.1 locales
  5.2 number formats
    5.2.1 currencies
    5.3 date and time
  5.4 collation
    5.4.1 collation strength
    5.4.2 decomposition
  5.5 message formatting
    5.5.1 choice formats
  5.6 text files and character sets
    5.6.1 character encoding of source files
  5.7 resource bundles
    5.7.1 locating resource bundles
    5.7.2 property files
    5.7.3 bundle classes
  5.8 a complete example
chapter 6: advanced swing
  6.1 lists
    6.1.1 the jlist component
    6.1.2 list models
    6.1.3 inserting and removing values
    6.1.4 rendering values
  6.2 tables
    6.2.1 a simple table
    6.2.2 table models
    6.2.3 working with rows and columns
    6.2.3.1 column classes
    6.2.3.2 accessing table columns
    6.2.3.3 resizing columns
    6.2.3.4 resizing rows
    6.2.3.5 selecting rows, columns, and cells
    6.2.3.6 sorting rows
    6.2.3.7 filtering rows
    6.2.3.8 hiding and displaying columns
    6.2.4 cell rendering and editing
    6.2.4.1 rendering the header
    6.2.4.2 cell editing
    6.2.4.3 custom editors
  6.3 trees
    6.3.1 simple trees
    6.3.1.1 editing trees and tree paths
    6.3.2 node enumeration
    6.3.3 rendering nodes
    6.3.4 listening to tree events
    6.3.5 custom tree models
  6.4 text components
    6.4.1 change tracking in text components
    6.4.2 formatted input fields
    6.4.2.1 integer input
    6.4.2.2 behavior on loss of focus
    6.4.2.3 filters
    6.4.2.4 verifiers
    6.4.2.5 other standard formatters
    6.4.2.6 custom formatters
    6.4.3 the jspinner component
    6.4.4 displaying html with the jeditorpane
  6.5 progress indicators
    6.5.1 progress bars
    6.5.2 progress monitors
    6.5.3 monitoring the progress of input streams
  6.6 component organizers and decorators
    6.6.1 split panes
    6.6.2 tabbed panes
    6.6.3 desktop panes and internal frames
    6.6.4 cascading and tiling
    6.6.5 vetoing property settings
    6.6.5.1 dialogs in internal frames
    6.6.5.2 outline dragging
    6.6.6.3 layers
下册
chapter 7: advanced awt
chapter 8: javabeans components
chapter 9: security
chapter 10: scripting, compiling, and annotation processing
chapter 11: distributed objects
chapter 12: native methods
index

 

展开全部

作者简介

Cay S. Horstmann 是Scala for the Impatient的作者,还与人合著了Core JavaServer Faces。他是圣何塞州立大学计算机科学专业的教授,还是一名Java Champion,并经常在很多开发者大会上演讲。   Gary Cornell 在编程方面拥有20多年的写作和教育经验。他是Apress的创始人之一,编写了很多与开发相关的畅销书,是Jolt大奖的获奖者之一,还荣获过Visual Basic Magazine的读者选择奖。

预估到手价 ×

预估到手价是按参与促销活动、以最优惠的购买方案计算出的价格(不含优惠券部分),仅供参考,未必等同于实际到手价。

确定
快速
导航