Image | ![]() |
EAN-13 | 9780792180012 ![]() |
Product Name | Star Trek The Next Generation - The Complete Third Season |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | Weight:1.15 pounds |
Amazon.com | ![]() |
SKU | D28979 |
Price New | 16.99 US Dollars (curriencies) |
Price Used | 9.51 US Dollars (curriencies) |
Aspect Ratio | 1.33:1 |
Cast | Patrick Stewart, Brent Spiner |
Width | 5.75 inches (convert) |
Height | 2 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 23.2 ounces (convert) |
Binding | Dvd |
Format | Box set, Color, Dolby, Full Screen, NTSC, Subtitled |
Run Time | 1,181 minutes |
Long Description | 26 episodes on 7 discs: Evolution, The Ensigns of Command, The Survivors, Who Watches the Watchers, The Bonding, Booby Trap, The Enemy, The Price, The Vengeance Factor, The Defector, The Hunted, The High Ground, Deja Q, A Matter of Perspective, Yesterday's Enterprise, The Offspring, Sins of the Father, Allegiance, Captain's Holiday, Tin Man, Hollow Pursuits, The Most Toys, Sarek, Menage a Troi, Transfigurations, The Best of Both Worlds Part 1. |
Similar Items | 0032429129581: Star Trek The Next Generation Season 5 0032429129574: Star Trek The Next Generation Season 4 0032429129598: Star Trek The Next Generation Season 6 0032429129604: Star Trek The Next Generation Season 7 0097360507942: Star Trek Voyager - The Complete Third Season 9780792179979: Star Trek The Next Generation - The Complete First Season 9780792197263: Star Trek Voyager - The Complete Second Season 0097361568324: Star Trek Voyager - The Complete First Season 0097360267846: Star Trek Enterprise-4th Season (Dvd/Ws/6 Discs) 9780792179993: Star Trek The Next Generation - The Complete Second Season 0973615690488: Star Trek The Next Generation - The Complete Second Season 0032429129611: Star Trek The Next Generation Season 1 0032429129550: Star Trek The Next Generation Season 2 |
Created | 12-05-2012 1:46:45am |
Modified | 10-09-2017 10:13:47pm |
MD5 | 91f20bebc76f44f9daa2c73b69a142a9 |
SHA256 | dc2b4fc78daf0a8e466aa86655ed9509defe9c23a798e08206929d31cc4e9ae6 |
Search Google | by EAN or by Title |
Query Time | 0.0172720 |
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.