像Windows ActiveSync一样在PC和Android手机之间同步文件?
是否可以通过 USB 将文件(如文本文件)从 Android 手机上的特定路径同步到电脑上的特定文件夹?与 ActiveSync 非常相似,您将手机连接到电脑,如果特定文件发生更改,它会将手机中的特定文件同步到电脑。
我说的不是 Outlook、联系人或 Word 文档,它是带有自定义扩展名的纯文本文件。
基本上,每当使用应用程序时,我的应用程序都会对文本文件进行更改,并且当用户完成后,他会将文本文件同步回由我们的主程序读取的电脑。
Is it possible to sync files (like textfiles) from a specific path on my Android Phone to a specific folder on my pc via USB? Pretty much like ActiveSync where you connect your phone to the pc and it syncs specific files from your phone to your pc if they are changed.
I am not talking about Outlook, Contacts or Word documents, it is plain text files with a custom extension.
Basically my app makes changes to a textfile whenever the app is used, and when the user is done he syncs the textfile back to the pc where it is read by our main program.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android SDK 中没有用于访问 USB 的 API。作为开发人员,您可以通过 DDMS 或通过 adb pull 来执行此操作,但您的应用程序无法启动此操作,更不用说对任意用户而言。
There are no APIs in the Android SDK for access to USB. You as a developer can do this via DDMS, or via
adb pull
, but your app has no way of initiating this, let alone for arbitrary users.