Image | ![]() |
EAN-13 | 0025192219740 ![]() |
UPC-A | 025192219740 ![]() |
Brand | Universal |
Product Name | 47 Ronin |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | Find 47 Ronin by Keanu Reeves in Blu-ray (DVD + Digital Copy). |
Amazon.com | ![]() |
Model | 29093465 |
Price New | 8.93 US Dollars (curriencies) |
Price Used | 0.46 US Dollars (curriencies) |
Width | 5.25 inches (convert) |
Height | 0.3 inches (convert) |
Length | 6.5 inches (convert) |
Weight | 3.84 ounces (convert) |
Binding | Blu-ray |
Published | 01/26/2016 |
Features | Factory sealed DVD |
Long Description | Keanu Reeves stars in the action-adventure epic, 47 Ronin. After a treacherous warlord kills their master and banishes their kind, 47 leaderless samurai vow to seek vengeance and reclaim their honor. This band of ronin must seek help from Kai (Reeves)—an enslaved half-breed they once rejected—in their ultimate fight for redemption in a savage world of mythic and wondrous terrors. Kai becomes their most deadly weapon and the heroic inspiration for these outnumbered warriors to confront their enemy and seize eternity. |
Similar Items | 5050582748505: Ninja Assassin [Blu Ray] 5039036060547: Avatar / Titanic 3D 0883929327263: 300 Rise of an Empire 0883929272808: Wrath of the Titans 0794043168222: The Hobbit: An Unexpected Journey (Extended Edition) (Blu-ray 3D + Blu-ray) 0794043158537: Jack the Giant Slayer (Blu-ray 3D/Blu-ray/DVD Combo Pack) 0717630742322: SOUBUN Unisex Passive 3D Glasses for LG, Panasonic, Toshiba, & more Passive 3D TVs for Watching Movies – Family Pack– New Polarized Lenses for Better Eye Protection (4 Pack) 0191329092316: Man with the Iron Fists 2 0085391156802: Constantine 0031398260882: Conan 4K Ultra HD 0031398164074: Gamer 0025192172588: Rush 0025192123665: R.I.P.D. 0025192103018: Drive Angry 0024543201311: Abraham Lincoln Vampire Huntr |
Created | 07-25-2016 7:19:41pm |
Modified | 04-16-2020 1:05:36am |
MD5 | 7e55fde74c69e86eaf8e37962ee95308 |
SHA256 | 0951b046c941acba531fd40dcf686c0556f3f35999ef5a63e13542166d074f60 |
Search Google | by EAN or by Title |
Query Time | 0.0425410 |
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.