2
Good night,
I was looking like we can open the disk drive on Windows using Java there are various means like even using vbs.
I wonder if I need to use some library on Linux or if I can do it directly by some command.
Could someone direct me? Thank you!
Try calling the terminal and executing the command to eject
Runtime run = Runtime.getRuntime(); run.exec("eject -T");
– DaviAragao