String pathToOurFile = \"/sdcard/DCIM/Camera/foto.jpg\";
String urlServer = \"http://server/upload.php\";
String lineEnd = \"\\r\\n\";
String two
I found this blog useful for writing some multipart form data code:
http://blog.rafaelsanches.com/2011/01/29/upload-using-multipart-post-using-httpclient-in-android/
Don't forget to change the boundary
variable to match what you specify in the HttpURLConnection
that you're using to send the multipart form to the server.