我正在开发一个应用程序,将文件(index.html、style.css ...)安装到手机的 SD 卡以用于网络服务器
Web 服务器需要获取 mp3 文件才能播放。
我的问题是我找不到我的 mp3 文件在哪里?
例如..
如果我将 mp3 文件放在 index.html 的同一文件夹中,它工作正常。
<a href="somthing.mp3"
data-format="mp3 ogg">mp3 file</a>
但是,如果我放置比 index.html 文件夹更高的文件夹,我无法获得 mp3 的路径。我试过了
<a href="/sdcard/MUSIC/somthing.mp3"
data-format="mp3 ogg">mp3 file</a>
和
<a href="http://xxx.xxx.xxx.xxx:8080/sdcard/MUSIC/somthing.mp3"
data-format="mp3 ogg">mp3 file</a>
“http://xxx.xxx.xxx.xxx/index.html”是我的安卓网络服务器...
我怎样才能得到我的文件???