将文件从android移动到linux

时间:2018-02-22 12:11:41

标签: android linux raspbian

我正在为Android编写应用程序,在这个应用程序中我想将文件发送到Raspberry Pi设备。我做了一些研究,我意识到我需要使用scp命令来做到这一点。

scp path/to/file user@ip.of.linux:/path/to/destination
//I dont know where to put this code 

现在我想现在如何在我的Android应用程序中运行此linux命令?有这个图书馆吗?如何运行scp并将我的文件从android移动到linux。

我正在使用Unity进行android开发。我的android和linux设备(Raspberry Pi)连接到同一个Wi-Fi。我也在使用Raspbian作为Pi设备。

1 个答案:

答案 0 :(得分:1)

scp是一个linux程序,它可能在您的Android设备上不存在(通常Android设备没有安装scp。)

我建议使用以下方式:

1)在Raspberry上设置Web服务器并通过http发送文件 2)在Raspberry上设置ftp服务器并通过ftp发送文件 3)在Raspberry上设置smb共享,在android上安装smb共享并通过smb发送文件