gpt4 book ai didi

android - 如何在 NanoHTTPD 响应中添加文件路径

转载 作者:太空宇宙 更新时间:2023-11-03 12:49:29 25 4
gpt4 key购买 nike

我正在使用 NanoHTTPD 播放我的 sdcard 中的音频文件,它工作正常。

如果我输入 http://172.16.6.75:8080在我的浏览器中它开始播放,但我想播放像 http://172.16.6.75:8080/test.mp3 这样的确切文件.

希望有人能在这里帮助我。谢谢!

最佳答案

Well, finally I change serve method to have 2 URLS and distinguish between them:

@Override
public Response serve(String uri, Method method,
Map<String, String> header,
Map<String, String> parameters,
Map<String, String> files) {


if (uri.contains("picture")){
//serve the picture
return new NanoHTTPD.Response(st, mediasend, fisPicture, f.length());

}else if (uri.contains("song")){

//serve the song
return new NanoHTTPD.Response(st, mediasend, fisSong, f.length());
}

关于android - 如何在 NanoHTTPD 响应中添加文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34586424/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com