1

I want to acces files on my LAN (on a NAS or PC) by an Android app like I can do on Windows by typing \pcname\ in the explorer. I know this is possible on Android, because there are other apps that do this (e.g. https://play.google.com/store/apps/details?id=com.rhmsoft.fm).

I already tried accessing the file as a local file (new File("\\pcname\")). Needless to say this did not work. I searched the web for tutorials, but every tutorial I found was using ftp, http and so on.

4

1 に答える 1

2

java.net.URL を使用すると、 のような ftp URL を使用できますftp://servername/path/to/file。Windows 共有にアクセスするには、SMB プロトコルを使用する必要があります (同様の質問があります: Android を介して Windows の共有フォルダーにアクセスし、ファイルを読み取る方法) 。

于 2013-01-08T19:12:47.120 に答える