Image | ![]() |
EAN-13 | 0025192092824 ![]() |
UPC-A | 025192092824 ![]() |
Product Name | Jaws 2 |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
SKU | 11226 |
Model | 2219764 |
Price New | 4.99 US Dollars (curriencies) |
Price Used | 1.80 US Dollars (curriencies) |
Rating | PG - Parental Guidance Suggested |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 116 minutes |
Aspect Ratio | 2.35:1 |
Cast | Lorraine Gary, Murray Hamilton, Roy Scheider |
Director | Jeannot Szwarc |
Genre | ADVENTURE,HORROR,THRILLER |
Run Time | 117 minutes |
Width | 5.5 inches (convert) |
Height | 0.75 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 25 hundredths pounds (convert) |
Binding | Dvd |
Release Year | 1978 |
Format | Multiple Formats, Closed-captioned, Color, NTSC, Widescreen |
Published | 05/23/2006 |
Run Time | 117 minutes |
Features | Shrink-wrapped |
Long Description | Four years after the traumatic episodes at Amity Island, that was terrorized by a 25 foot long great white shark that was devouring beach goers. After the shark was destroyed, Amity Island was at peace and opened a hotel at the Holiday Inn. Days after the opening, beach goers begun to disappear along with a half eaten killer whale that was beached. Brody, was getting concerned about those incidents and, felt that another great white is on the loose. |
Similar Items | 0717951002129: Arachnophobia 0191329002445: Jurassic World Fallen Kingdom 0097360893540: Orca (1976) 0025192347726: Jaws: The Revenge 0025192347627: Jaws 3-D 0025192279218: Jaws 3-Movie Collection 0025192251344: Jaws 0025192126291: Jaws 0025192014925: Dante's Peak - Collector's Edition 0024543231653: Poseidon Adventure View 17 more similar items |
Created | 07-01-2006 |
Modified | 03-02-2022 1:12:24am |
MD5 | 3f2f98033465112661fd2a71a7a04833 |
SHA256 | ad7dcbd3cde95ef04da3436494f7aad96d4ef75827648fee18b5643d5f7635ff |
Search Google | by EAN or by Title |
Query Time | 0.0276539 |
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.