I am trying to upload file to a php server from my android device. There is thread with same question but he is using a different method. My Android side code works fine and
Change your code in the following way for the correct escape sequences:
Replace
String lineEnd = "rn";
with
String lineEnd = "\r\n";