API | Operation | Description |
Extracting object content | Extracts the content of a specified object (in CSV or JSON format) |
cos:GetObject
.String bucket = "examplebucket-1250000000";// The object must be in JSON or CSV formatString cosPath = "exampleobject";final String expression = "Select * from COSObject";SelectObjectContentRequest selectObjectContentRequest = new SelectObjectContentRequest(bucket, cosPath, expression, true,new InputSerialization(CompressionType.NONE, new JSONInput(JSONType.DOCUMENT)),new OutputSerialization(new JSONOutput(",")));// Set the result callback which may work repeatedlyselectObjectContentRequest.setSelectObjectContentProgressListener(new SelectObjectContentListener() {@Overridepublic void onProcess(SelectObjectContentEvent event) {}});cosXmlService.selectObjectContentAsync(selectObjectContentRequest,new CosXmlResultListener() {@Overridepublic void onSuccess(CosXmlRequest request, CosXmlResult result) {SelectObjectContentResult selectObjectContentResult =(SelectObjectContentResult) result;}// If you use the Kotlin language to call this, please note that the exception in the callback method is nullable; otherwise, the onFail method will not be called back, that is:// clientException is of type CosXmlClientException? and serviceException is of type CosXmlServiceException?@Overridepublic void onFail(CosXmlRequest cosXmlRequest,@Nullable CosXmlClientException clientException,@Nullable CosXmlServiceException serviceException) {if (clientException != null) {clientException.printStackTrace();} else {serviceException.printStackTrace();}}});
Was this page helpful?