파일 업 로더를 만들고 싶습니다. 그래서 나는 파일 선택기가 필요하지만 이것을 혼자 쓰고 싶지는 않습니다. OI 파일 관리자를 찾았고 저에게 적합하다고 생각합니다. 그러나 어떻게 사용자가 OI 파일 관리자를 설치하도록 할 수 있습니까? 할 수없는 경우 내 앱에 파일 관리자를 포함하는 더 좋은 방법이 있습니까? 고마워
파일 업 로더를 만들고 싶습니다. 그래서 나는 파일 선택기가 필요하지만 이것을 혼자 쓰고 싶지는 않습니다. OI 파일 관리자를 찾았고 저에게 적합하다고 생각합니다. 그러나 어떻게 사용자가 OI 파일 관리자를 설치하도록 할 수 있습니까? 할 수없는 경우 내 앱에 파일 관리자를 포함하는 더 좋은 방법이 있습니까? 고마워
답변:
수정 ( 2012 년 1 월 2 일 ) :
이 프로세스를 간소화하는 동시에 내장 파일 탐색기를 제공하는 작은 오픈 소스 Android 라이브러리 프로젝트를 만들었습니다 (사용자에게 파일 탐색기 가없는 경우). 사용이 매우 간단하며 코드 몇 줄만 있으면됩니다.
GitHub : aFileChooser 에서 찾을 수 있습니다 .
실물
사용자가 시스템에서 파일을 선택할 수 있도록하려면 자신의 파일 관리자를 포함하거나 사용자에게 다운로드하도록 안내해야합니다. 당신이 할 수있는 최선의 방법은 다음과 같이 "개방 가능한"콘텐츠를 찾는 것입니다 Intent.createChooser()
.
private static final int FILE_SELECT_CODE = 0;
private void showFileChooser() {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
try {
startActivityForResult(
Intent.createChooser(intent, "Select a File to Upload"),
FILE_SELECT_CODE);
} catch (android.content.ActivityNotFoundException ex) {
// Potentially direct the user to the Market with a Dialog
Toast.makeText(this, "Please install a File Manager.",
Toast.LENGTH_SHORT).show();
}
}
선택한 파일의에 대한 당신은 듣지도 않을거야 Uri
에 onActivityResult()
이렇게 같은 :
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
switch (requestCode) {
case FILE_SELECT_CODE:
if (resultCode == RESULT_OK) {
// Get the Uri of the selected file
Uri uri = data.getData();
Log.d(TAG, "File Uri: " + uri.toString());
// Get the path
String path = FileUtils.getPath(this, uri);
Log.d(TAG, "File Path: " + path);
// Get the file instance
// File file = new File(path);
// Initiate the upload
}
break;
}
super.onActivityResult(requestCode, resultCode, data);
}
getPath()
내에서 방법 FileUtils.java
이다
public static String getPath(Context context, Uri uri) throws URISyntaxException {
if ("content".equalsIgnoreCase(uri.getScheme())) {
String[] projection = { "_data" };
Cursor cursor = null;
try {
cursor = context.getContentResolver().query(uri, projection, null, null, null);
int column_index = cursor.getColumnIndexOrThrow("_data");
if (cursor.moveToFirst()) {
return cursor.getString(column_index);
}
} catch (Exception e) {
// Eat it
}
}
else if ("file".equalsIgnoreCase(uri.getScheme())) {
return uri.getPath();
}
return null;
}
이 목적으로 AndExplorer를 사용했으며 내 솔루션은 팝업 대화 상자를 표시 한 다음 누락 된 응용 프로그램을 설치하기 위해 시장으로 리디렉션하는 것입니다.
내 startCreation이 외부 파일 / 디렉토리 선택기를 호출하려고합니다. 누락 된 경우 show installResultMessage 함수를 호출하십시오.
private void startCreation(){
Intent intent = new Intent();
intent.setAction(Intent.ACTION_PICK);
Uri startDir = Uri.fromFile(new File("/sdcard"));
intent.setDataAndType(startDir,
"vnd.android.cursor.dir/lysesoft.andexplorer.file");
intent.putExtra("browser_filter_extension_whitelist", "*.csv");
intent.putExtra("explorer_title", getText(R.string.andex_file_selection_title));
intent.putExtra("browser_title_background_color",
getText(R.string.browser_title_background_color));
intent.putExtra("browser_title_foreground_color",
getText(R.string.browser_title_foreground_color));
intent.putExtra("browser_list_background_color",
getText(R.string.browser_list_background_color));
intent.putExtra("browser_list_fontscale", "120%");
intent.putExtra("browser_list_layout", "2");
try{
ApplicationInfo info = getPackageManager()
.getApplicationInfo("lysesoft.andexplorer", 0 );
startActivityForResult(intent, PICK_REQUEST_CODE);
} catch( PackageManager.NameNotFoundException e ){
showInstallResultMessage(R.string.error_install_andexplorer);
} catch (Exception e) {
Log.w(TAG, e.getMessage());
}
}
이 방법은 대화 상자를 선택하고 사용자가 시장에서 외부 애플리케이션을 설치하려는 경우
private void showInstallResultMessage(int msg_id) {
AlertDialog dialog = new AlertDialog.Builder(this).create();
dialog.setMessage(getText(msg_id));
dialog.setButton(getText(R.string.button_ok),
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
finish();
}
});
dialog.setButton2(getText(R.string.button_install),
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=lysesoft.andexplorer"));
startActivity(intent);
finish();
}
});
dialog.show();
}