Image | ![]() |
EAN-13 | 5050070008234 ![]() |
Product Name | The January Man |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Model | MSE579783 |
Price New | 9.82 US Dollars (curriencies) |
Price Used | 14.99 US Dollars (curriencies) |
Rating | R - Restricted |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 97 minutes |
Aspect Ratio | 1.85:1 |
Cast | Danny Aiello, Harvey Keitel, Kevin Kline, Mary Elizabeth Mastrantonio, Susan Sarandon |
Director | Pat O'Connor |
Genre | ACTION,CRIME,MYSTERY |
Run Time | 97 minutes |
Weight | 20 hundredths pounds (convert) |
Binding | Dvd |
Release Year | 1989 |
Format | PAL |
Run Time | 97 minutes |
Long Description | Nick and Frank Starkey were both policemen. A scandal forced Nick to leave the force, now a serial killer has driven the police to take him back. A web that includes Frank's wife, bribery, and corruption all are in the background as Nick tries to uncover the secret of where the killer will strike next, and finally must lay a trap without the police. |
Similar Items | 0024543565888: Bottle Shock 9780767849487: Dogma 0043396048911: Dogma 0024543565857: Bottle Shock 0013137009594: Search for John Gissing 9780788826825: Blow Dry 0024543576112: Nobel Son 0794051211125: Barchester Chronicles 0883929227563: Song Of Lunch 0796019804806: Snow Cake 9780780650510: An Awfully Big Adventure 0794043785825: An Awfully Big Adventure 0026359246128: Something the Lord Made |
Created | 05-15-2015 3:47:59pm |
Modified | 04-27-2018 2:47:58am |
MD5 | 950a3ee4d1ec6028632bb17a22384d85 |
SHA256 | ead4c0432d70613712a70c21d78cbd38e93e5e08f5609e99e5478c66a26ed1f0 |
Search Google | by EAN or by Title |
Query Time | 0.0326200 |
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.