The revised edition of the classic Core Java(t), 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 ...
The revised edition of the classic Core Java(t), 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(t), Volume I-Fundamentals (ISBN: 978-0-13-235476-9).
作者简介
· · · · · ·
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 writ...
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' Choice award from Visual Basic Magazine.
原文摘录
· · · · · ·
The last method is the most important. Permissions have an ordering, in which more general permissions imply more specific ones. Consider the file permission
p1 = new FilePermission("/tmp/-", "read, write");
This permission allows reading and writing of any file in the /tmp directory and any of its subdirectories.
This permission implies other, more specific permissions:
p2 = new FilePermission("/tmp/-", "read");
p3 = new FilePermission("/tmp/aFile", "read, write");
p4 = new FilePermission("/tmp/aDirectory/-", "write");
In other words, a file permission p1 implies another file permission p2 if
The target file set of p1 contains the target file set of p2.
The action set of p1 contains the action set of p2. (查看原文)
《Java核心技术卷2(第十二版)》是Cay S. Horstmann著的一本深入讲解Java编程技术的书籍。 这本书以其全面而深入的内容给我留下了深刻的印象。书中详细讨论了Java高级技术和库的使用,涵盖了多线程编程、网络编程、GUI编程、数据库访问、XML处理、Web服务等各个方面。每个主题...
(展开)
0 有用 ISpring 2012-12-29 02:16:41
基础入门书
0 有用 酸的雨 2009-08-26 23:58:36
只读了部分
0 有用 HelloWorld 2010-03-28 21:26:03
看了前3章,剩下的等以后现用现看吧。。。
0 有用 拉格朗日 2012-03-04 22:19:37
我的java入门书
0 有用 Bryson 2013-11-26 13:57:24
粗略的过了一下networking,internationalization,和scripting、compiling、annotation