Image | ![]() |
EAN-13 | 0014381723021 ![]() |
UPC-A | 014381723021 ![]() |
Product Name | I Will Follow |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | DVD |
Web Link | www.facebook.com |
Amazon.com | ![]() |
Model | 17923038 |
Price New | 6.64 US Dollars (curriencies) |
Price Used | 2.17 US Dollars (curriencies) |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 80 minutes |
Cast | Salli Richardson-Whitfield , Tracie Thoms , Omari Hardwick |
Director | Ava DuVernay |
Genre | DRAMA |
Run Time | 90 minutes |
Width | 5.25 inches (convert) |
Height | 0.5 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 15 hundredths pounds (convert) |
Binding | Dvd |
Release Year | 2010 |
Format | Multiple Formats, Color, Dolby, NTSC, Widescreen |
Published | 06/19/2012 |
Run Time | 90 minutes |
Features | Factory sealed DVD |
Long Description | Chronicles a day in the life of a grieving woman, and the twelve visitors who help her move forward. |
Similar Items | 0853476002814: Breathe 0824355542820: Dangerous Obsession 0741952693390: Everyday Black Man 0043396471153: When the Bough Breaks 0031398222873: Pastor Brown/ Sins of the Mother - Double Feature 0031398211464: Middle Of Nowhere 0024543492054: Cover Repackaged 0014381997729: Last Letter 0014381868128: Cross to Bear, A 0000799430224: How U Like Me Now? |
Created | 04-17-2012 7:50:07pm |
Modified | 04-10-2020 4:12:26pm |
MD5 | 1acfc2ae283d81f12e6f57994c354b7b |
SHA256 | de9a1be34dfe9fd8c57a387995db921ac39b98e27c133fb75b4e54621e3b21e4 |
Search Google | by EAN or by Title |
Query Time | 0.0200300 |
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.