Wypróbowałem rozwiązania dostarczone przez Dmitriya Lozenko i Gnathonic na moim Samsung Galaxy Tab S2 (model: T819Y), ale żadne nie pomogło mi odzyskać ścieżki do zewnętrznego katalogu na karcie SD. mount
wykonanie polecenia zawierało wymaganą ścieżkę do zewnętrznego katalogu karty SD (np. / Storage / A5F9-15F4), ale nie było zgodne z wyrażeniem regularnym, dlatego nie zostało zwrócone. Nie rozumiem mechanizmu nazewnictwa katalogów, po którym jest Samsung. Dlaczego odbiegają od standardów (np. Extsdcard) i wymyślają coś naprawdę podejrzanego, jak w moim przypadku (np. / Storage / A5F9-15F4) . Czy jest coś, czego mi brakuje? Tak czy inaczej, po zmianach w wyrażeniach regularnych Gnathonic rozwiązanie pomogło mi uzyskać prawidłowy katalog sdcard:
final HashSet<String> out = new HashSet<String>();
String reg = "(?i).*(vold|media_rw).*(sdcard|vfat|ntfs|exfat|fat32|ext3|ext4).*rw.*";
String s = "";
try {
final Process process = new ProcessBuilder().command("mount")
.redirectErrorStream(true).start();
process.waitFor();
final InputStream is = process.getInputStream();
final byte[] buffer = new byte[1024];
while (is.read(buffer) != -1) {
s = s + new String(buffer);
}
is.close();
} catch (final Exception e) {
e.printStackTrace();
}
final String[] lines = s.split("\n");
for (String line : lines) {
if (!line.toLowerCase(Locale.US).contains("asec")) {
if (line.matches(reg)) {
String[] parts = line.split(" ");
for (String part : parts) {
if (part.startsWith("/"))
if (!part.toLowerCase(Locale.US).contains("vold"))
out.add(part);
}
}
}
}
return out;
Nie jestem pewien, czy to poprawne rozwiązanie i czy da wyniki na innych tabletach Samsunga, ale na razie rozwiązało mój problem. Poniżej znajduje się kolejna metoda odzyskiwania ścieżki wymiennej karty SD w systemie Android (wersja 6.0). Przetestowałem tę metodę na Androidzie marshmallow i działa. Zastosowane w nim podejście jest bardzo podstawowe i na pewno sprawdzi się w innych wersjach, ale testowanie jest obowiązkowe. Pomocny będzie wgląd w to:
public static String getSDCardDirPathForAndroidMarshmallow() {
File rootDir = null;
try {
File innerDir = Environment.getExternalStorageDirectory();
rootDir = innerDir;
String externalStorageDirPath = innerDir.getAbsolutePath();
if (externalStorageDirPath != null
&& externalStorageDirPath.length() > 1
&& externalStorageDirPath.startsWith("/")) {
externalStorageDirPath = externalStorageDirPath.substring(1,
externalStorageDirPath.length());
}
if (externalStorageDirPath != null
&& externalStorageDirPath.endsWith("/")) {
externalStorageDirPath = externalStorageDirPath.substring(0,
externalStorageDirPath.length() - 1);
}
String[] pathElements = externalStorageDirPath.split("/");
for (int i = 0; i < pathElements.length - 1; i++) {
rootDir = rootDir.getParentFile();
}
File[] files = rootDir.listFiles();
for (File file : files) {
if (file.exists() && file.compareTo(innerDir) != 0) {
try {
if (Environment.isExternalStorageRemovable(file)) {
return file.getAbsolutePath();
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
} catch (Exception ex) {
ex.printStackTrace();
}
return null;
}
Prosimy o podzielenie się, jeśli masz inne podejście do rozwiązania tego problemu. Dzięki