Image | ![]() |
EAN-13 | 9780747521013 ![]() |
Product Name | Blind Fury (Ironfist Chinmi - Kung Fu Boy) |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Paperback |
Amazon.com | ![]() |
Price New | 3.98 US Dollars (curriencies) |
Price Used | 1.99 US Dollars (curriencies) |
Width | 0.55 inches (convert) |
Height | 7.05 inches (convert) |
Length | 4.57 inches (convert) |
Weight | 4.8 ounces (convert) |
Author | Takeshi Maekawa |
Page Count | 190 |
Binding | Paperback |
Published | 11/01/1995 |
Long Description | This is the third in the Manga series, "Ironfist", which follows the exciting early years of the hero who learns, uses and develops both his fighting and mental skills to defeat his warlike enemies. The text is in cartoon style, and the book reads from back to front, with numbered boxes. |
Similar Items | 9780747525578: Ironfist Chinmi - Pole Stars (Ironfist Chinmi - Kung Fu Boy) 9780747520177: Kung Fu Boy Chinmi (Ironfist Chinmi - Kung Fu Boy) 9780747524991: Whirlwind Fist (Ironfist Chinmi - Kung Fu Boy) 9780747520993: Leap Of Faith (Ironfist Chinmi - Kung Fu Boy) 9780440227298: Kung Fu Boy (Ironfist Chinmi #1) 9780747525646: Drunken Master (Ironfist Chinmi - Kung Fu Boy) 9780747524977: Breaking Glass (Ironfist Chinmi - Kung Fu Boy) 9780747521006: Attack of the Black Flame (Ironfist Chinmi - Kung Fu Boy) 9780747520986: Victory Of The Spirit (Ironfist Chinmi - Kung Fu Boy) 9780747520979: Journey To Mount Shen (Ironfist Chinmi - Kung Fu Boy) 9780747524960: Cutting Edge (Ironfist Chinmi - Kung Fu Boy) |
Created | 09-24-2012 11:06:21pm |
Modified | 10-06-2017 2:09:57am |
MD5 | 7de8eb165a1f1b330d535c5a73198bf7 |
SHA256 | aa448e311df503f212bef5fc2694b7be35295cd0858f8e39c407111ffce305fd |
Search Google | by EAN or by Title |
Query Time | 0.0300841 |
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.