开发者

how to extract Removable memory device in java [closed]

开发者 https://www.devze.com 2023-02-15 09:53 出处:网络
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?

0

精彩评论

暂无评论...
验证码 换一张
取 消