0

假设一个链接“ http://xzy.com/filedownload/12345 ”正在请求文件。

那么如何检测它正在请求文件以便我可以将此链接发送到默认浏览器?

我试过这样:

if(url.endsWith("apk")) 
{ Intent internet = new Intent(); 
internet.setAction(Intent.ACTION_VIEW); 
internet.addCategory(Intent.CATEGORY_BROWSABLE); 
internet.setData(Uri.parse(url)); 
startActivity(internet); 
} 

但它的直接 URL 像 (xzy.com/file.apk),现在借助 php 中的帮助 htaccess 它可以用作 (xzy.com/fileload/123) 但第二个链接不起作用,因为没有任何扩展该 URL 上的 APK。

4

0 回答 0