假设链接“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的扩展名。