Image | ![]() |
EAN-13 | 0025192344893 ![]() |
UPC-A | 025192344893 ![]() |
Product Name | Sleepless |
Category | Electronics / Photography: A/V Media: Movie / TV |
Web Link | sleeplessmovie.com |
Amazon.com | ![]() |
Price New | 5.72 US Dollars (curriencies) |
Price Used | 2.92 US Dollars (curriencies) |
Rating | R - Restricted |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 96 minutes |
Aspect Ratio | 2.40:1 |
Cast | David Harbour, Dermot Mulroney, Jamie Foxx, Michelle Monaghan, Tip T.I. Harris |
Director | Baran bo Odar |
Genre | PB ACTION/ADVENTURE |
Run Time | 96 minutes |
Width | 5.75 inches (convert) |
Height | 0.5 inches (convert) |
Length | 8 inches (convert) |
Weight | 25 hundredths pounds (convert) |
Binding | Dvd |
Release Year | 2017 |
Format | Color, NTSC, Subtitled, Widescreen |
Published | 03/17/2018 |
Run Time | 96 minutes |
Features | Shrink-wrapped |
Long Description | Undercover police officer Vincent Downs (Jamie Foxx) thrives in the high stakes web of corrupt cops and the mob-controlled casino underground of Las Vegas. But when a heist goes wrong and a crew of homicidal gangsters kidnaps Downs' teenage son, Downs must evade an internal affairs investigation, rescue his son, and bring the kidnappers to justice all in one pulse-pounding, action-packed sleepless night. |
Similar Items | 0883929609918: Fist Fight 0883929568390: Fist Fight 0883929426027: Live By Night 0043396492448: 100 Streets 0032429269713: xXx Return Of Xander Cage 0031398270607: First Kill 0031398265146: Chapter And Verse 0031398261339: War On Everyone 0031398259442: John Wick Chapter 2 0025192360039: Bye Bye Man 0025192351112: Take 0025192237744: Incarnate |
Created | 11-03-2017 12:04:46am |
Modified | 06-05-2019 4:38:23pm |
MD5 | 632e6a2cd515b216ff88aa9910fe1fb5 |
SHA256 | da89c8ec42c810226bd68e9e25074b5596288b59f894ad722a8e4ef734e63190 |
Search Google | by EAN or by Title |
Query Time | 0.0235090 |
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.