parsing - Android. Downloaded .docx files converting to .bin files -


I'm trying to download. Use the purpose of linking the browser to handle Docx file URLs. The file is being downloaded but the file is in .bin without any extension. My code looks like this:

  string url = documentList.get (status) .getManMadeLink (); Intent I = new intent (Intent.ACTION_VIEW); I.setData (Uri.parse (url)); StartActivity (i);  

How to solve this problem? Any suggestions?


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -