I had a requirement where i had to read the csv file from S3 bucket which i achieved it through S3Object s3Obj = amazonS3Client.getObject(bucketname, fileName); BufferedReader reader = new BufferedReader(new InputStreamReader( s3Obj.getObjectContent()));
But now the same csv file is in archived(Zipped) form present in AWS S3 bucket. Now i need to read this csv file without un-zip operations at my server-end. Is there any docs or API's present in AWS to read csv file directly without unzipping it.
Aucun commentaire:
Enregistrer un commentaire