Image | ![]() |
EAN-13 | 9780130625601 ![]() |
Product Name | Geometry Third Edition Student Edition 2004c |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Height:1.4 inches / Length:10.8 inches / Weight:4.35 pounds / Width:8.7 inches |
Amazon.com | ![]() |
Price New | 6.41 US Dollars (curriencies) |
Price Used | 1.00 US Dollars (curriencies) |
Width | 1.44 inches (convert) |
Height | 11.13 inches (convert) |
Length | 8.74 inches (convert) |
Weight | 69.6 ounces (convert) |
Author | Prentice Hall |
Page Count | 840 |
Binding | Hardcover |
Published | 07/01/2002 |
Long Description | Prentice Hall Mathematics offers comprehensive math content coverage, introduces basic mathematics concepts and skills, and provides numerous opportunities to access basic skills along with abundant remediation and intervention activities. |
Similar Items | 9780673294470: Literature And Integrated Studies: Forms Of Literature 9780073301136: Biology 9780131658363: Prentice-Hall Mathematics: Algebra 2 9780131339989: Prentice-Hall Mathematics: Algebra 2 9780078259258: Biology: The Dynamics Of Life, Student Edition 9780134323459: America: Pathways To The Present 5e Survey Student Edition 2003c 9780130528490: America: Pathways To The Present 5e Survey Student Edition 2003c 9780131807648: Prentice-Hall Mathematics: Algebra 2 9781889322551: Unmasking Sexual Con Games: Teen Guide 9780131657410: Prentice-Hall Mathematics: Algebra 2 View 43 more similar items |
Created | 01-18-2008 |
Modified | 10-09-2017 2:17:57am |
MD5 | 08ffd39c6f4750d769975dae19b9c0d2 |
SHA256 | ec84c3c49f1447596c664ffa1ad620c4939e6a70c79dab06f304902053eab1e7 |
Search Google | by EAN or by Title |
Query Time | 0.0221050 |
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.