Как я могу прочитать первый сектор флэш-памяти USB, подключенной к устройству Android? - PullRequest
1 голос
/ 31 января 2012

Я хочу прочитать первый сектор или первые байты флэш-памяти USB, подключенной к планшету Android!

я знаю, что должен использовать RandomAccessFile, но я не знаю, каков адрес моей флешки!

спасибо за вашу помощь


я нашел этот код, но я не знаю, что мне поставить вместо args [0]

public class FAT16
{
public static void main(String[] args) throws IOException
{
// open file whose name is on the command line for input

RandomAccessFile file = new RandomAccessFile(args[0], "r");

// skip ahead to byte 19 (0x13 hex) where the num of sectors is stored

file.seek(0x13);

// 2-byte values are little-endian; Java is big-endian, so we
// have to read the two bytes separately and glue them together
// ourselves

int low = file.readUnsignedByte();
int high = file.readUnsignedByte();

int sectorsOnDisk = low + (high * 256);

// skip ahead to where the sectors per FAT is stored

file.seek(0x16);
low = file.readUnsignedByte();
high = file.readUnsignedByte();

int sectorsPerFAT = low + high * 256;

// skip back to where the bytes per sector is stored

file.seek(0x0b);
low = file.readUnsignedByte();
high = file.readUnsignedByte();
int bytesPerSector = low + high * 256;

// report size of disk and number of sectors per FAT

System.out.println("Disk size = " + sectorsOnDisk * bytesPerSector );
System.out.println("Sectors per FAT = " + sectorsPerFAT);
}

}

я знаю, что мы должны использовать "/ dev / sdaX" в linux, но что это будет за adnroid?

1 Ответ

1 голос
/ 31 января 2012

В Android SDK нет поддержки "флэш-памяти USB".Пожалуйста, проконсультируйтесь с производителем вашего устройства, чтобы узнать, есть ли у них специальные протоколы для доступа к USB-флэш-памяти на их устройствах.

...