Thanks for posting your questions here. From the Java SDK for Dropbox 
<https://www.dropbox.com/developers/documentation/java#tutorial>, the APIs 
seem to all use InputStream, OutputStream for writing and reading files 
respectively. As such, I would strongly suggest using those standard 
classes for these types of operations.

You could use new ByteArrayInputStream(myString.getBytes(charset)) to turn 
your string into the corresponding stream required. Is there any particular 
reason why you need to use StringReader? Are facing any particular 
difficulties with the tutorials 
<https://www.dropbox.com/developers/documentation/java#tutorial> Dropbox 
provides with their Java SDK? Knowing these factors, we the community may 
be able to provide a more specific or tailored solution.


On Monday, April 18, 2016 at 6:07:08 PM UTC-4, Lebsh wrote:
>
> Our company product running on GAE written in Java. 
> recently we received a requirement from one of our customers to integrate 
> with DropBox.
> We need to create files from StringReader , write them to dropBox  and via 
> versa, read files from dropBox and process them in app engine.
> after a week of researching we are not optimistic about the possibility of 
> making this work.
>
> Does any one knows for practically how GAE can integrate with DropBox 
>  using Java dropBox API? 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/73f3b885-fddf-488e-a20f-a67a5e99ddf1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to