Image | ![]() |
EAN-13 | 9781104853310 ![]() |
Product Name | The Lowland |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Height:5.89 inches / Length:0.55 inches / Weight:0.99 pounds / Width:8.87 inches |
Amazon.com | ![]() |
SKU | 9781104853310 |
Price New | 2.94 US Dollars (curriencies) |
Price Used | 0.49 US Dollars (curriencies) |
Width | 1.29 inches (convert) |
Height | 9.5 inches (convert) |
Length | 6.58 inches (convert) |
Weight | 22.88 ounces (convert) |
Author | Jhumpa Lahiri |
Page Count | 352 |
Binding | Hardcover |
Published | 09/24/2013 |
Features | Used Book in Good Condition |
Long Description | This scarce antiquarian book is a facsimile reprint of the original. Due to its age, it may contain imperfections such as marks, notations, marginalia and flawed pages. Because we believe this work is culturally important, we have made it available as part of our commitment for protecting, preserving, and promoting the world's literature in affordable, high quality, modern editions that are true to the original work. |
Similar Items | 9780139576133: White Dog Fell From The Sky: A Novel 9780064948227: Behind The Beautiful Forevers: Life, Death, And Hope In A Mumbai Undercity 9780062184849: The End Of The Point: A Novel 9780061719905: The Writing on My Forehead: A Novel 9780061713767: Behind The Beautiful Forevers: Life, Death, And Hope In A Mumbai Undercity 9780061493867: The Writing on My Forehead: A Novel 9780030042171: Calcutta: Two Years In The City 9780007173037: Interpreter Of Maladies 9780002259002: Interpreter Of Maladies 9780001849396: White Dog Fell From The Sky: A Novel View 59 more similar items |
Created | 10-11-2013 2:43:33pm |
Modified | 10-04-2017 2:09:42pm |
MD5 | 907c6109c96a31053f83da296236cd88 |
SHA256 | 353da7417781f616824c584794e1a8779c26f803d93078f5b8fee77fe3d894f1 |
Search Google | by EAN or by Title |
Query Time | 0.0178940 |
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.