Have one to sell? Sell yours here
Java and XML (O'Reilly Java Tools)
 
See larger image
 
Tell the Publisher!
I'd like to read this book on Kindle

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

Java and XML (O'Reilly Java Tools) [Paperback]

Brett McLaughlin (Author)
3.4 out of 5 stars  See all reviews (56 customer reviews)


Available from these sellers.


Textbook Student FREE Two-Day Shipping for Students. Learn more

Formats

Amazon Price New from Used from
Paperback --  
There is a newer edition of this item:
Java and XML Java and XML 2.9 out of 5 stars (15)
$31.49
In Stock.

Book Description

0596000162 978-0596000165 June 2000 1

XML has been the biggest buzzword on the Internet community for the past year. But how do you cut through all the hype and actually put it to work? Java revolutionized the programming world by providing a platform-independent programming language. XML takes the revolution a step further with a platform-independent language for interchanging data. Java and XML share many features that are ideal for building web-based enterprise applications, such as platform-independence, extensibility, reusability, and global language (Unicode) support, and both are based on industry standards. Together Java and XML allow enterprises to simplify and lower costs of information sharing and data exchange. Java and XML shows how to put the two together, building real-world applications in which both the code and the data are truly portable.

This book covers:

  • The basics of XML
  • Using standard Java APIs to parse XML
  • Designing new document types using DTDs and Schemas
  • Writing programs that generate XML data
  • Transforming XML into different forms using XSL transformations (XSL/T)
  • XML-RPC
  • Using a web publishing framework like Apache-Cocoon

This is the first book to cover the most recent versions of the DOM specification (DOM 2), the SAX API (SAX 2) and Sun's Java API for XML.


Customers Who Viewed This Item Also Viewed


Editorial Reviews

Amazon.com Review

Two hot topics come together in this developer's guide from Brett McLaughlin, Java and XML. Both Java and XML are cross-platform technologies; by using Java for code and XML for transporting data, you can build truly portable applications. This title is aimed at intermediate to advanced programmers; while XML topics are explained more or less from scratch, readers will need prior knowledge of Java.

The book begins with an overview of XML and its uses, and goes on to explain how to parse XML by using the Simple API for XML (SAX 2). Next, there is coverage of how XML is validated by using Document Type Definitions (DTDs) and XML Schema, and transformed by using eXtensible Stylesheet Language (XSL). Brief coverage of Sun's Java API for XML is followed by a detailed look at the Java Document Object Model (JDOM), a new API devised by the author in association with O'Reilly, the publisher.

The last part of the book is more advanced, and covers applications of XML and Java. There are chapters on Web-publishing frameworks, XML Remote Procedure Calls (RPCs), using XML to read and write configuration data, and generating XML with Java. There is also a short business-to-business example. Appendices provide an API reference to the various specifications discussed in the book.

The strengths of Java and XML include the author's deep knowledge of his subject, and a writing style that is both clear and enthusiastic. If you happen to know a lot about Java and not much about XML, this is the ideal title. Readers who already have a good grasp of XML basics might be frustrated by the amount of introductory material. --Tim Anderson

About the Author

Brett McLaughlin has become one of the most well-known authors and programmers in the Java and XML communities. He's worked for Nextel Communications, implementing complex enterprise systems, at Lutris Technologies, actually writing application servers, and most recently at O'Reilly Media, Inc., where he continues to write and edit books that matter. His most recent book, "Java 5.0 Tiger: A Developer's Notebook", was the first book available on the newest version of Java, and his classic Java and XML remains one of the definitive works on using XML technologies in Java.


Product Details

  • Paperback: 498 pages
  • Publisher: O'Reilly Media; 1 edition (June 2000)
  • Language: English
  • ISBN-10: 0596000162
  • ISBN-13: 978-0596000165
  • Product Dimensions: 9.1 x 6.9 x 1.3 inches
  • Shipping Weight: 2.6 pounds
  • Average Customer Review: 3.4 out of 5 stars  See all reviews (56 customer reviews)
  • Amazon Best Sellers Rank: #2,110,886 in Books (See Top 100 in Books)

More About the Author

Brett D. McLaughlin is a bestselling and award-winning non-fiction author. His books on computer programming, home theater, and analysis and design have sold in excess of 100,000 copies. He has been writing, editing, and producing technical books for nearly a decade, and is as comfortable in front of a word processor as he is behind a guitar, chasing his two sons around the house, or marveling at Damages with his wife.

Miracle is Brett's first fiction novel, but his short stories and writing skills have been garnering lots of attention in 2007. He is a book reviewer for Infuze Magazine, and a regular guest lecturer in First Baptist Academy, Dallas's creative writing course. He's been asked to teach a concentrated course in Professional Writing for students intending to major in writing-related degrees. His short story 'Change of Heart' was published online at the Relief Writer's Network, and is set for inclusion in the second issue of Coach's Midnight Diner, a genre publication of Christian-influenced short stories.

 

Customer Reviews

56 Reviews
5 star:
 (23)
4 star:
 (7)
3 star:
 (8)
2 star:
 (8)
1 star:
 (10)
 
 
 
 
 
Average Customer Review
3.4 out of 5 stars (56 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

62 of 65 people found the following review helpful:
5.0 out of 5 stars Finally! XML from a developer's standpoint!, July 17, 2000
This review is from: Java and XML (O'Reilly Java Tools) (Paperback)
I've read several books on XML that have been mainly a regurgitation of the specifications without much attempt to help a developer understand how the technology can actually be used. This is the first book I have read on this subject that actually bridges this gap and gives useful, working examples of how XML can be used in your Java applications to solve real-world problems. Instead of giving a code snippet that shows only how to call the XML parsing/processing APIs, the book gives full examples on how to use XML in applications from servlets for presentation to B2B applications for data collaboration between companies.

The book was well written and easy to follow. The author doesn't waste time reiterating the same things over and over. Links for more information on each subject are given in the text.

If you are looking to implement an XML solution in Java, this book will be a great help along the way.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


39 of 42 people found the following review helpful:
5.0 out of 5 stars As current as it gets, June 26, 2000
This review is from: Java and XML (O'Reilly Java Tools) (Paperback)
I tried to submit a review once already, but it got ignored... in any case, this is the most current book available on XML. Not only does it cover all the stuff I was looking for (including XML Schema), it covers the latest version of the specifications (many as late as April!). I found SAX 2.0 (the final release, even) and the latest XML Schema, both of which I am using at my company, and needed up-to-date support. The book is even more accurate than some of my favorite web page resources! It also covers JDOM, something the author wrote, which makes my life so much easier - I had to use DOM before, and JDOM is much simpler. It also compares JDOM and DOM in the code samples (side by side) so I got to see exactly where the differences were. Finally, a hidden gem - this book covered RSS! Something I hardly knew about, we are now doing our entire portal site in RSS thanks to "Java and XML". Pick it up - more in here than I even knew was useful, plus all the examples work (! ) and are not silly Hello World things.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


36 of 40 people found the following review helpful:
3.0 out of 5 stars Disappointing..., October 30, 2000
By 
This review is from: Java and XML (O'Reilly Java Tools) (Paperback)
Reading the reviews and ratings of this book here and at other sites, I was expecting a serious, in-depth look at using Java and XML together from a technical perspective. Unfortunately, the areas of detail in this book weren't applicable to my current project, and I ended up relying more on the Xerces documentation than on this book.

Apart from a good overview of the SAX parser in Xerces and how to code event handlers for it, there isn't much more than a brief introduction to many aspects of coding Java applications for XML, followed by a sequence of one-chapter overviews of various business applications. The book simply tries to cover too many topics in too short a space. Between XSL, SAX, DOM, JDOM, stylesheets, DTDs, B2B data interchange and all the other topics, the book should have been twice as long. This book could be useful in conjunction with a more detailed technical reference or programming guide (if such a book exists), since it does provide some good skeleton objects in its various scenarios. It should not be your only book (or your first book) on this subject.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews











Only search this product's reviews



What Other Items Do Customers Buy After Viewing This Item?


Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 
(4)
(3)
(2)

Your tags: Add your first tag
 

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums



So You'd Like to...


Create a guide


Look for Similar Items by Category


Look for Similar Items by Subject