Image | ![]() |
EAN-13 | 0031398137443 ![]() |
UPC-A | 031398137443 ![]() |
Product Name | Finding Neverland (Miramax Lions Gate/ Widescreen) |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | DVD |
Amazon.com | ![]() |
SKU | A031398137443 |
Price New | 3.39 US Dollars (curriencies) |
Price Used | 2.97 US Dollars (curriencies) |
Long Description | Award winners Johnny Depp (PIRATES OF THE CARIBBEAN: THE CURSE OF THE BLACK PEARL), Kate Winslet (ETERNAL SUNSHINE OF THE SPOTLESS MIND), Dustin Hoffman, and Julie Christie (TROY, HAMLET) star in this magical tale about one of the world's greatest storytellers and the people who inspired his masterwork @#Peter Pan.@# Well-known playwright James M. Barrie (Depp) finds his career at a crossroads when his latest play flops and doubters question his future. Then by chance he meets a widow (Winslet) and her four adventurous boys. Together they form a friendship that ignites the imagination needed to produce Barrie's greatest work! An enchanting big-screen treat with an acclaimed cast of stars, FINDING NEVERLAND has been hailed as one of the year's best motion pictures! |
Similar Items | 9780792848172: Benny & Joon 9780783286358: Peter Pan 9780767889056: Afterglow 9780767860703: Hook (Superbit Collection) 9780767836326: Hook 9780517538739: J.M. Barrie & The Lost Boys: The Love Story that Gave Birth to Peter Pan 9780300098228: J. M. Barrie And The Lost Boys: The Real Story Behind Peter Pan 5050070001860: Benny & Joon 5039036036733: Waitress [Import anglais] 0012569715035: Charlie And The Chocolate Factory |
Created | 04-17-2012 7:35:35pm |
Modified | 10-10-2017 6:53:08am |
MD5 | 9b6ab3756b220a1c97b66e0364807b2e |
SHA256 | 48ad2094649bc9ecb5a93009a34f0ebd1d2bfe8af93272ef06f569ce77573bcb |
Search Google | by EAN or by Title |
Query Time | 0.0246749 |
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.