Is there any Dropbox Sync library available for java? -


i started doing poc integrating java web-app dropbox. found although there dropbox-core-sdk java. reasons dropbox has not provided sync libraries java(the sync libraries available android/ios).

1) can use the android sync api in java web-app?

2) if not, there libs available sync api in java?

3) if not, how can write :) ?


thanks,

rajesh

1) can use the android sync api in java web-app?

i don't know. you'd have try out. can think of couple of reasons why might not work:

  • the android download includes android (linux) native libraries x86, mips , arm. there no windows dlls (naturally).

  • the java code in download provided java bytecode files only. expect files include dependencies on android classes, problematic running them on (real) java platform.

2) there libs available sync api in java?

i found eclipse library apparently implements dropbox sync: http://code.google.com/a/eclipselabs.org/p/eclipse-sync/

i didn't investigate how eclipse specific is, available in source code form.

3) how can write it?

start above. alternatively, track down protocol spec (if there one) , implement scratch.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -