Image | ![]() |
EAN-13 | 9780064402385 ![]() |
Product Name | A Taste Of Blackberries |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Paperback |
Amazon.com | ![]() |
SKU | 903426182 |
Price New | 1.24 US Dollars (curriencies) |
Price Used | 0.25 US Dollars (curriencies) |
Width | 5 inches (convert) |
Height | 7.75 inches (convert) |
Length | 0.25 inches (convert) |
Weight | 1.6 ounces (convert) |
Author | Doris Buchanan Smith |
Page Count | 96 |
Binding | Paperback |
Published | 12/28/2004 |
Features | Great product! |
Long Description | What do you do without your best friend? Jamie isn't afraid of anything. Always ready to get into trouble, then right back out of it, he's a fun and exasperating best friend. But when something terrible happens to Jamie, his best friend has to face the tragedy alone. Without Jamie, there are so many impossible questions to answer -- how can your best friend be gone forever? How can some things, like playing games in the sun or the taste of the blackberries that Jamie loved, go on without him? |
Similar Items | 9780439624664: From The Mixed-Up Files Of Mrs. Basil E. Frankweiler 9780439533379: The Whipping Boy 9780380709588: Dear Mr. Henshaw 9780380009138: Dear Mr. Henshaw 9780192821959: From The Mixed-Up Files Of Mrs. Basil E. Frankweiler 9780152052607: The Hundred Dresses 9780140321692: The Hundred Dresses 9780140313918: Pigs Might Fly 9780072933178: Taking Sides 9780064402019: The Great Gilly Hopkins View 23 more similar items |
Created | 06-09-2012 1:05:00am |
Modified | 04-30-2020 3:15:02pm |
MD5 | 039a47ecf9f29d65b67ea5086b5a5977 |
SHA256 | 31507032856ff88f4b6e55f6cb50c2c1c27644fd00f6737e70bd3bafe31fc10a |
Search Google | by EAN or by Title |
Query Time | 0.0253658 |
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.