Does anyone knows how to unmount a drive in java in OSx

I am trying to unmount a sdcard from java. I am using java Swing class and the drive gets mounted automatically, but how do I unmount it.

link|improve this question
2  
potential duplicate of stackoverflow.com/questions/5505682/… ??? – Michael Dautermann Jan 3 at 20:48
"I am using java Swing class and the drive gets mounted automatically" <-- I very much doubt Swing is responsible for this at all – fge Jan 3 at 20:50
++ to Michael Dautermann. That is the solution you should follow. – Chris Aldrich Jan 3 at 20:56
In Java 7 FileSystem.close() might imply an unmount. But it is neither mentioned, and neither do I know the availability of Java 7 on OSx. – Joop Eggen Jan 3 at 21:05
feedback

2 Answers

The concept of mounting/unmounting is not platform agnostic, so it doesn't exist directly within the Java APIs. You will most probably have to issue a command line call to unmount by using Runtime.exec()

There might be open source libraries available that wrap this exec call for you, but I'm not positive.

link|improve this answer
I have a error in Java Swing class while unmounting an SD card. The following works fine with command prompt "umount -f /Volume/ NO \NAME/". Now if I have to write the runtime.exec() by passing the directory path from swing class I can generate the following command, "umount -f /Volume/ NO NAME/". How to work around the problem of space in java – Arindam Bhattacharjee Jan 3 at 22:31
feedback

You could call umount using Runtime.exec. Of course, this solution is not portable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.