Image | ![]() |
EAN-13 | 0762183496321 ![]() |
UPC-A | 762183496321 ![]() |
Product Name | Malevolence |
Category | Electronics / Photography: A/V Media: Movie / TV |
Web Link | www.malevolencemovie.com |
Amazon.com | ![]() |
Price New | 12.54 US Dollars (curriencies) |
Price Used | 10.16 US Dollars (curriencies) |
Rating | R - Restricted |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 90 minutes |
Aspect Ratio | 1.85:1 |
Cast | Heather Magee, R. Brandon Johnson, Richard Glover, Samantha Dark |
Director | Stevan Mena |
Genre | CRIME,HORROR,MYSTERY |
Width | 5.25 inches (convert) |
Height | 0.5 inches (convert) |
Length | 6.5 inches (convert) |
Weight | 20 hundredths pounds (convert) |
Binding | Blu-ray |
Release Year | 2003 |
Features | Shrink-wrapped |
Long Description | Created as the middle section of a three-part trilogy, 'Malevolence' is the tragic story of a group of bank robbers on the run from the law. They hide out in an abandoned house on the outskirts of town, unaware it is next door to the home of a family of serial killers. One of their hostages escapes and runs for help, but all hell breaks loose when she runs to the "wrong" house. |
Similar Items | 0888574722562: Bad Ronald 0859422006042: Creeps Blu-ray 0851597006537: Trauma 0826663191806: The Critters Collection [Blu-ray] 0826663189599: Ghost Stories 0826663169546: Exorcist III 0810162037420: Summer of 84 0762183496420: Malevolence 2 Bereavement 0762183496123: Malevolence 3 Killer 0760137160885: Unnamable, The 0738329230302: Trilogy of Terror 0191329073667: Tales From the Hood 2 0031398294139: Maximum Overdrive 0014381103458: Puppet Master The Littlest Reich |
Created | 09-22-2018 12:03:15am |
Modified | 10-17-2020 11:41:58am |
MD5 | 22cf235b7f7fc234be93ae6d56159e6e |
SHA256 | 3ee018b3c3567115f851742a45393bdf715d155e90631032b2cf48f181e12a47 |
Search Google | by EAN or by Title |
Query Time | 0.0346880 |
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.