in app/java/src/main/java/com/google/cloudclientapi/GoogleCloudStorage.java [30:39]
public static String downloadFileAsString(String bucket, String filePath) {
Storage storage = StorageOptions.getDefaultInstance().getService();
Blob blob = storage.get(bucket, filePath);
if (blob == null) {
return null;
}
byte[] contentAsBytes = blob.getContent();
String contentAsString = new String(contentAsBytes, StandardCharsets.UTF_8);
return contentAsString;
}