Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Java) Fetch S3 Object MetadataDemonstrates how to get the metadata for an S3 object using the REST API. The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you are interested only in an object's metadata. To use HEAD, you must have READ access to the object. A HEAD request has the same options as a GET operation on an object. The response is identical to the GET response except that there is no response body.
import com.chilkatsoft.*; public class ChilkatExample { static { try { System.loadLibrary("chilkat"); } catch (UnsatisfiedLinkError e) { System.err.println("Native code library failed to load.\n" + e); System.exit(1); } } public static void main(String argv[]) { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkRest rest = new CkRest(); // Connect to the Amazon AWS REST server using the correct region (in this example, "us-west-2") boolean bTls = true; int port = 443; boolean bAutoReconnect = true; boolean success = rest.Connect("s3-us-west-2.amazonaws.com",port,bTls,bAutoReconnect); // Provide AWS credentials for the REST call. CkAuthAws authAws = new CkAuthAws(); authAws.put_AccessKey("AWS_ACCESS_KEY"); authAws.put_SecretKey("AWS_SECRET_KEY"); authAws.put_ServiceName("s3"); // Make sure the Region agrees with the region in the Connect. authAws.put_Region("us-west-2"); success = rest.SetAuthAws(authAws); // User-defined metadata are name/value pairs, and are returned in the HTTP response header. // Metadata header names begin with "x-amz-meta-" to distinguish them from other HTTP headers. // Note that Amazon S3 stores user-defined metadata keys in lowercase. // Set the bucket name via the HOST header. // In this case, the bucket name is "chilkat.ocean". rest.put_Host("chilkat.ocean.s3.amazonaws.com"); // Send the HEAD request. success = rest.SendReqNoBody("HEAD","/seahorse.jpg"); if (success != true) { System.out.println(rest.lastErrorText()); return; } // Read the response header. int responseStatusCode = rest.ReadResponseHeader(); if (responseStatusCode < 0) { System.out.println(rest.lastErrorText()); return; } System.out.println("Response status code = " + responseStatusCode); if (responseStatusCode != 200) { System.out.println(rest.responseHeader()); System.out.println("Object does not exist."); return; } // Show the full response header that was received: System.out.println("Response header:"); System.out.println(rest.responseHeader()); System.out.println("--"); // Here is an example response header: // x-amz-id-2: uS4Flff04M8x5YWajU231TP0ClBL19mMhuyfU5ZVQd6NsUHXVhHK+H3b0sjxY98Fujet1ejhyzk= // x-amz-request-id: 27950009AA8E68AA // Date: Mon, 23 Jan 2017 20:12:58 GMT // Last-Modified: Fri, 20 Jan 2017 00:22:57 GMT // ETag: "a8551f0a5437f43a796fca7623ee9232" // x-amz-meta-species: big-belly seahorse // x-amz-meta-genus: Hippocampus // x-amz-meta-habitat: shallow tropical and temperate waters // Accept-Ranges: bytes // Content-Type: image/jpg // Content-Length: 24388 // Server: AmazonS3 // Examine particular response headers (the object metadata headers..) System.out.println("x-amz-meta-species: " + rest.responseHdrByName("x-amz-meta-species")); System.out.println("x-amz-meta-genus: " + rest.responseHdrByName("x-amz-meta-genus")); System.out.println("x-amz-meta-habitat: " + rest.responseHdrByName("x-amz-meta-habitat")); System.out.println("--"); // It is possible to iterate over the header fields to find all x-amz-meta* headers int i = 0; int numHeaders = rest.get_NumResponseHeaders(); CkStringBuilder sbName = new CkStringBuilder(); while (i < numHeaders) { sbName.SetString(rest.responseHdrName(i)); if (sbName.StartsWith("x-amz-meta",false) == true) { System.out.println(sbName.getAsString() + ": " + rest.responseHdrValue(i)); } i = i+1; } // The output: // x-amz-meta-species: big-belly seahorse // x-amz-meta-genus: Hippocampus // x-amz-meta-habitat: shallow tropical and temperate waters } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.