파일 업로드로 서버에 전송하기

Hwan·2023년 2월 20일
0

voicekeeper

목록 보기
15/16

구현할 내용

  • 시연을 위해 미리 준비된 .m4a 파일을 서버에 업로드
  • 서버 연결 코드는 7. Azure Storage에 pooling하기 사용
  • UI는 3. 다이얼 구현 사용 (통화 버튼 = 업로드 버튼)
  • DialFragmet와 동일한 구조로 사용했으므로, Fragment로 구현함

HomeFragment.java

public class HomeFragment extends Fragment {
    private static final int FILE_PICKER_CODE = 100;

    public HomeFragment() {    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View root = inflater.inflate(R.layout.fragment_home, container, false);

        ImageButton calling = root.findViewById(R.id.calling);
        calling.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                requestUploadFile();
            }
        });
        return root;
    }

    private void requestUploadFile() {
        Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
        intent.setType("audio/*");
        startActivityForResult(Intent.createChooser(intent, "Select File"), FILE_PICKER_CODE);
    }

    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == FILE_PICKER_CODE && resultCode == Activity.RESULT_OK) {
            Uri uri = data.getData();
            if (uri != null) {
                String filePath = getFilePathFromUri(uri);
                if (filePath != null) {
                    File file = new File(filePath);
                    FileUploadUtils.send2Server(file);
                } else {
                    Log.e("TAG", "Failed to get file path from URI");
                }
            }
        }
    }

    private String getFilePathFromUri(Uri uri) {
        String[] projection = {MediaStore.Audio.Media.DATA};
        Cursor cursor = getActivity().getContentResolver().query(uri, projection, null, null, null);
        if (cursor == null) {
            return uri.getPath();
        } else {
            cursor.moveToFirst();
            int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.DATA);
            String filePath = cursor.getString(columnIndex);
            cursor.close();
            return filePath;
        }
    }
}

0개의 댓글