Image | ![]() |
EAN-13 | 9780793806492 ![]() |
Product Name | Nature Aquarium: Complete Works 1985-2009 |
Category | Book / Magazine / Publication |
Short Description | Height:1.01 inches / Length:10.02 inches / Weight:3.54 pounds / Width:11.28 inches |
Amazon.com | ![]() |
SKU | 9780793806492 |
Price New | 38.53 US Dollars (curriencies) |
Price Used | 32.77 US Dollars (curriencies) |
Width | 11.75 inches (convert) |
Height | 10.25 inches (convert) |
Length | 1.25 inches (convert) |
Weight | 56.64 ounces (convert) |
Author | Takashi Amano |
Page Count | 266 |
Binding | Hardcover |
Published | 01/01/2011 |
Features | UPC: 9780793806492 |
Long Description | Nature Aquarium: Complete Works 1985-2009 takes you on a journey through over two decades of the most innovative and breathtaking designs from nature aquarium pioneer Takashi Amano. In this collection of works from the world-renowned aquarist, over 200 vibrant, full-color photos display the captivating beauty of nature aquariums while providing detailed, step-by-step instructions on how to create your own aquatic masterpiece. Along with expert advice on plant and fish selection, water chemistry, and maintenance, the author includes essays outlining aquarium aesthetics and his own personal design philosophies to inspire readers to create their own harmonious and tranquil nature aquarium designs. |
Similar Items | 9780754811008: Encyclopedia Of Aquarium Plants 9780696016608: 500 Freshwater Aquarium Fish: A Visual Reference To The Most Popular Species 9780600404248: 500 Freshwater Aquarium Fish: A Visual Reference To The Most Popular Species 9780600334767: 500 Freshwater Aquarium Fish: A Visual Reference To The Most Popular Species 9780534375300: Ecology Of The Planted Aquarium 9780517327340: Encyclopedia Of Aquarium Plants 9780517250587: Encyclopedia Of Aquarium Plants 9780517168400: Encyclopedia Of Aquarium Plants 9780470044254: Freshwater Aquarium Models: Recipes For Creating Beautiful Aquariums That Thrive 9780431127354: Ecology Of The Planted Aquarium View 39 more similar items |
Created | 11-22-2012 2:54:40pm |
Modified | 10-08-2017 9:05:38pm |
MD5 | 59061a623d7e8dce26791a793da995e0 |
SHA256 | 3d8f6c13e6746390211fa740b175129dc74171c0cabc9aa179abd71bc715368b |
Search Google | by EAN or by Title |
Query Time | 0.0229189 |
Article of interest
This is a basic implementation of a service that provides retrieval access to the EANData.com UPC web site. Its was coded to verify basic proof-of-concept for development of another application and was not intended to provide be anything more than basic functionality in the retrieval of UPC data from the EANData.com web site.
There are several places where simple code was left in place rather than using more advanced Java features/methods to allow for easier understanding of junior developers. Not much time spent refactoring or cleaning up the code. It is provided as a starting point only.
It contains a Factory service that returns a service object configured using the UcpService.properties (see below) file found in the class path of the executed code. The UpcQueryService can respond with an implementation of the UpcResponse and supporting interfaces or with an InputStream allowing direct access to the response from the from the EANData.com web site.
JSR 353 is the Java API for JSON is currently under development (http://java.net/projects/json-processing-spec & http://java.net/projects/jsonp). The several Java JSON implementations seemed to be more than I was wanting/needing so I wrote a basic parser to provide JSON parsing capability needed. Its not perfect but is a good basic start.
Download the example source code
The UpcService.properties must be configured.
Url (Required)
provides the address used to query UPC data. The additional parameters are added to retrieve the requested information.
ApiKeyCode (Required)
Provided from EANData.com when your account is setup.
Mode (Required)
The manner in which the data will be retrieved from the EANData.com web site.
AutoRetrieveGraphics (Optional)
Boolean to indicate whether the graphics, when indicated by a Url, are to be automatically retrieved at the same time with the UPC data. Default is false. A factory method allows for the this property to be overridden at the time the UpcQueryService is created.