I have my own application where user uploads a file. Now whenever he want to edit this file, my application will try to open this file using google docs. This is a web-application in java. How to do it?
I didn't see a sample for same in net.
I have my own application where user uploads a file. Now whenever he want to edit this file, my application will try to open this file using google docs. This is a web-application in java. How to do it?
I didn't see a sample for same in net.
On
My development team tried to solve similar problem. However, from what I see it can not be solved, and here is why:
Drive equivalent of Dropbox would be "Back up and Sync" which you would need to install in your server, but it's only available for Windows and Mac. Supposing your server is Linux, the only thing I think of is uploading manually the files with a script, and downloading them to the server after the user finishes editing.
For more information, you can check the Drive Quickstart here. Regarding the GDrive online, you can change the default apps using the Drive API too. In conclusion, unless your server runs on Windows, I think it’s a complex thing to do.