Image | ![]() |
EAN-13 | 0011891701488 ![]() |
UPC-A | 011891701488 ![]() |
Product Name | Blown Away / The Killer Elite / Betrayed |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | DVD |
Price New | 10.95 US Dollars (curriencies) |
Price Used | 2.20 US Dollars (curriencies) |
Rating | R - Restricted |
IMDb | Not on IMDb |
Run Time | 370 minutes |
Cast | James Caan, Jeff Bridges, Robert Duvall, Tom Berenger, Tommy Lee Jones |
Run Time | 370 minutes |
Width | 5.25 inches (convert) |
Height | 0.5 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 15 hundredths pounds (convert) |
Binding | Dvd |
Format | Multiple Formats, Color, Dolby, NTSC, Widescreen |
Run Time | 370 minutes |
Long Description | A triple-feature of suspense, thrills, and action. Films include: Blown Away , The Killer Elite and Betrayed . Blown Away (1994, Rated R, 121 minutes): An escaped Irish political prisoner and explosives expert terrorizes the city of Boston. A bomb squad expert and former friend of the mad bomber have to stop his vengeful rampage before his family and the whole city are… Blown Away . The Killer Elite (1975, Rated PG, 123 minutes): A man employed by a private agency to perform international assassinations is mercilessly betrayed by his partner and best friend. After slowly and painfully rebuilding his body, almost destroyed by two bullets to the knee and elbow, he is given another assignment and goes looking for his ex-partner to even the score. Betrayed (1988, Rated R, 127 minutes): When an abrasive talk-show host is brutally murdered in Chicago, the FBI steps in to investigate. The leading suspects are a group of white supremacists headquartered in the rural Midwest, so the Bureau sends a female agent (Debra Winger) to infiltrate the community and uncover the truth about their involvement. But the agent compromises her objectivity when she falls in love with one of the prime suspects (Tom Berenger) and refuses to believe he could be guilty of such a heinous crime. |
Similar Items | 0086162104268: Edge 0031398259442: John Wick: Chapter 2 0031398247265: Criminal 0025192316197: American Made 0024543050308: Edge 0014381749021: Death Before Dishonor/Wanted Dead or Alive 0012236130437: Red Heat 0012236105152: One Mans Justice 0011891701716: F/X / F/X 2 0011891701044: No Way Out / Company Business View 8 more similar items |
Created | 04-16-2012 11:51:56pm |
Modified | 04-28-2020 2:34:28pm |
MD5 | 713fc00747d87d8bec3ff98a8d52c6e0 |
SHA256 | 7df3d59ee56f502b8e87f0ed5c5b5be397ae4bb8f09c80cee27777f1492c3609 |
Search Google | by EAN or by Title |
Query Time | 0.0284538 |
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.