It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For he开发者_运
相关专题:
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For he开发者_运维问答lp clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
i want to make a program that can extract the data from a removable memory device
In general:
File file = new File("/path/to/removable/device", "path/to/file");
BufferedFileReader fileReader = new BufferedFileReader(new FileReader(file));
String line = fileReader.readLine();
But you're going to have to give us much more detail. What sort of data are you trying to retrieve from the removable memory device? Is it already mounted? Can it be mounted?
精彩评论