Я пытался загрузить аудиофайл с android на сервер ec2, но не могу получить имя выбранного файла.
Uri uri = data.getData();
String selectedPath = uri.toString();
Я попробовал вышеуказанный код и получил вывод как:
content://com.android.providers.downloads.documents/document/17
, но когда я попытался загрузить файл, он не распознает путьв виде файла.
Вот мой Upload.java код:
public class Upload {
Context context;
public Upload(Context context) {
this.context = context;
}
String UPLOAD_URL= "<MY_SERVER_URL>";
private int serverResponseCode;
public String uploadVideo(String file) {
String fileName = file;
HttpURLConnection conn = null;
DataOutputStream dos = null;
String lineEnd = "\r\n";
String twoHyphens = "--";
String boundary = "*****";
int bytesRead, bytesAvailable, bufferSize;
byte[] buffer;
int maxBufferSize = 1 * 1024 * 1024;
File sourceFile = new File(file);
if (!sourceFile.isFile()) {
Log.e("Huzza", "Source File Does not exist");
return null;
}
try {
FileInputStream fileInputStream = new FileInputStream(sourceFile);
URL url = new URL(UPLOAD_URL);
conn = (HttpURLConnection) url.openConnection();
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setUseCaches(false);
conn.setRequestMethod("POST");
conn.setRequestProperty("Connection", "Keep-Alive");
conn.setRequestProperty("ENCTYPE", "multipart/form-data");
conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
conn.setRequestProperty("myFile", fileName);
dos = new DataOutputStream(conn.getOutputStream());
dos.writeBytes(twoHyphens + boundary + lineEnd);
dos.writeBytes("Content-Disposition: form-data; name=\"myFile\";filename=\"" + fileName + "\"" + lineEnd);
dos.writeBytes(lineEnd);
bytesAvailable = fileInputStream.available();
Log.i("Huzza", "Initial .available : " + bytesAvailable);
bufferSize = Math.min(bytesAvailable, maxBufferSize);
buffer = new byte[bufferSize];
bytesRead = fileInputStream.read(buffer, 0, bufferSize);
while (bytesRead > 0) {
dos.write(buffer, 0, bufferSize);
bytesAvailable = fileInputStream.available();
bufferSize = Math.min(bytesAvailable, maxBufferSize);
bytesRead = fileInputStream.read(buffer, 0, bufferSize);
}
dos.writeBytes(lineEnd);
dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);
serverResponseCode = conn.getResponseCode();
fileInputStream.close();
dos.flush();
dos.close();
} catch (MalformedURLException ex) {
ex.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
if (serverResponseCode == 200) {
StringBuilder sb = new StringBuilder();
try {
BufferedReader rd = new BufferedReader(new InputStreamReader(conn
.getInputStream()));
String line;
while ((line = rd.readLine()) != null) {
sb.append(line);
}
rd.close();
} catch (IOException ioex) {
}
return sb.toString();
}else {
return "Could not upload";
}
}
}
И это метод вызова
private void uploadVideo() {
class UploadVideo extends AsyncTask<Void, Void, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
Log.e("STRING", s);
}
@Override
protected String doInBackground(Void... params) {
Upload u = new Upload(getApplicationContext());
String msg = u.uploadVideo(selectedPath);
//Log.e("MSG", msg);
return msg;
}
}
UploadVideo uv = new UploadVideo();
uv.execute();
}
Я перепробовал все имеющиеся решения, но оказалось, что большинство из этих решений были для Android KitKat и ниже, а другие не работали. Ни одно из решений не работает для Android Pie.
Пробные решения:
Как получить полный путь к файлу из URI
Получить реальный путь из URI, Android KitKat - новая структура доступа к хранилищу
Получить имя файла и путь из URI из mediastore