How can I mount and unmount hard drives (platform independent, so no using Runtime to execute a hard-coded command) in the Java Programming Language?
|
feedback
|
|
The answer is "Yes And No". You could not mount or unmount devices in java because each OS has their own methods to do this. BUT... you can provide java api that use adapter pattern for native interface. You should do some things:
It is not pure java, but is good solution I think. Client code will use java. | |||
|
feedback
|
|
As there is no way to do this portably (or even with the same semantics), there is no built-in Java method to do so. | |||
|
feedback
|
|
"Platform independent" doesn't mean you are not allowed to use external processes. You can check the OS your app is runnning on. See | |||
feedback
|
|
Think about it: Java is supposed to work on platforms where no hard drives exist, so how could there be a platform independent way of doing this? Why do you want/need to do this? | |||||||||||
feedback
|