Image | ![]() |
EAN-13 | 0024543824619 ![]() |
UPC-A | 024543824619 ![]() |
Product Name | Day Watch / Night Watch Double Feature Blu-ray |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Model | 27405407 |
Price New | 49.94 US Dollars (curriencies) |
Price Used | 44.99 US Dollars (curriencies) |
Run Time | 129 minutes |
Artist | Day Watch, Night Watch |
Run Time | 129 minutes |
Width | 5.3 inches (convert) |
Height | 0.4 inches (convert) |
Length | 6.75 inches (convert) |
Weight | 15 hundredths pounds (convert) |
Binding | Blu-ray |
Format | Multiple Formats, Blu-ray, NTSC, Widescreen |
Published | 09/10/2013 |
Run Time | 129 minutes |
Long Description | Includes: Day Watch and Night Watch. |
Similar Items | 9786317640177: Mortal Engines 9780062310132: Twilight Watch: Book Three (Night Watch) 9780062310118: Day Watch: Book Two (Night Watch) 9780062310071: New Watch: Book Five (Night Watch) 0888574768720: Thing From Another World, The 0888574705626: Looker 0887090601801: Invasion of the Body Snatchers 0032429316752: Bumblebee 0024543824435: 28 Days Later / 28 Weeks Later Double Feature Blu-ray 0024543450030: Perfect Creature 0002454345003: Perfect Creature |
Created | 12-05-2018 12:00:23am |
Modified | 02-05-2019 11:55:33am |
MD5 | dde6535856a7879ff8790f9e972bc4c6 |
SHA256 | 5595f953b4040c04ee02e016c54de5855eb51950117f2f98ffb3f46789ded0d3 |
Search Google | by EAN or by Title |
Query Time | 0.0255818 |
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.