我有一个文件上传到保管箱,我只想从我的android应用程序对其进行编辑。我不想下载它。文件格式为json formate。例如,我的文件名为“添加” 格式:
{"slots":[ {"slotid":"2b","updatetime":1477650798,"active":true,"adurl":"https:\/\/play.goo gle.com\/store\/apps\/details?id=com.MoversGames.DriftCarSimulatorExtremeDriving","imgurl":"https://i.imgur.com/oRHNKN0.jpg","hd":"false","x":0,"y":0},
{"slotid":"1a","updatetime":1477650727,"active":true,"adurl":"https:\/\/play.google.com\/store\/apps\/details?id=com.MoversGames.RCCarRacing","imgurl":"https://i.imgur.com/sF5IrDe.jpg","hd":"false","x":0,"y":0}],"containers":[]}
已上传到保管箱。我只想通过我的android应用程序对其进行编辑。
注意:我想从我的android应用程序在线对其进行编辑
答案 0 :(得分:0)
要使用Android中的Dropbox API,您应该使用the Dropbox API v2 Java SDK。有an example Android app here。
Dropbox API无法提供直接编辑Dropbox上特定文件片段的方法;您只需要上传整个新版本即可,例如,使用the upload
method。