Question

I'm want to get an Image from the cloud like this example:

URL url = new URL("https://developer.vuforia.com/samples/cloudreco /json/samplebook1.json");
URLConnection ucon = url.openConnection();
InputStream is = ucon.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is, 128);
baf = new ByteArrayBuffer(128);`

Do you know a free cloud server that can let me store my Images ? Need some help please.

Was it helpful?

Solution 2

I think what your asking for is an image hosting site, maybe http://www.imgur.com ?

If this is not correct, please explain your question in more detail, a code sample of downloading an image does not offer much in site into a solution your looking for

OTHER TIPS

A good place to store your images on the cloud is Amazon S3. However, you can always use other providers like Dropbox (which works under Amazon S3, as far as I know) or even Google Drive. This is an application example on GitHub, which upload/download an image to Amazon S3. As you can see, you have the option of deploying it instantly to a specific provider, but you can also use it locally as it is a simple java web application.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top