Questions tagged [gcloud-java]

gcloud-java is a Google Cloud Platform client library for Java applications.

Google Cloud Client Library for Java - an idiomatic, intuitive, and natural way for Java developers to integrate with Google Cloud Platform services, like Cloud Datastore and Cloud Storage.

35 questions
0
votes
1 answer

Send mail from GCLOUD to other email(gmail,yahoo). Like email verification link, subscription confirmation

import java.util.*; import javax.mail.*; import javax.mail.internet.*; import javax.activation.*; public class SendEmail { public static void main(String [] args){ String to = "gourab.p17@gmail.com"; String from =…
0
votes
1 answer

How do I authenticate my Java application with Google Cloud Storage?

I am writing a Java application to interact with files in Google Cloud Storage. I found gcloud-java which I'm trying to get working. Looking at their examples it seems I should be able to simply run them after having logged-in with gcloud, but it…
dimo414
  • 47,227
  • 18
  • 148
  • 244
0
votes
1 answer

gcloud-java-storage Storage.BlobListOption.recursive(false) not working

I am trying to do an non-recursive list using gcloud-java storage on GCS bucket outside appengine based on this suggestion However it seems that its not working as expected, namely it is still listing all the files although I have set the…
Xinwei Liu
  • 333
  • 6
  • 15
0
votes
1 answer

Google Cloud Java Client library not compiling through gradle

I'm using google cloud endpoints as the backend server and google cloud storage to host the images for the project. Now I want to make an endpoint to upload a image file to the google cloud storage bucket. For that I have ended up on this google…
-1
votes
1 answer

Can someone help me delete Google cloud Search Index using Java

Can someone help me delete Google cloud Search Index using Java or a sample script
1 2
3