AWS S3 file search using Java

后端 未结 3 1609
傲寒
傲寒 2021-02-13 11:14

We are using a java class to dowload a file from AWS s3 bucket with the following code

inputStream = AWSFileUtil.getInputStream(
            AWSConnectionUtil.g         


        
3条回答
  •  走了就别回头了
    2021-02-13 11:29

    Use the GET Bucket S3 API:

    http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGET.html

    and specify the full file name as a prefix.

提交回复
热议问题