public boolean downloadFile(String filepath, File targetPath) {\r
// HttpGet get = new HttpGet(mUri.toString() + filepath.replace(" ",\r
// "%20"));\r
+ String[] splitted_filepath = filepath.split("/");\r
+ filepath = "";\r
+ for (String s : splitted_filepath) {\r
+ if (s.equals("")) continue;\r
+ filepath += "/" + URLEncoder.encode(s);\r
+ }\r
\r
Log.e("ASD", mUri.toString() + filepath.replace(" ", "%20") + "");\r
GetMethod get = new GetMethod(mUri.toString()\r