gpt4 book ai didi

Java 在 Windows 资源管理器中选择文件?

转载 作者:搜寻专家 更新时间:2023-11-01 03:28:35 24 4
gpt4 key购买 nike

我正在开发一个 Java GUI,其中我有一个 JTable,我在其中填充了我的文件系统,在 JTable 上我有一个像这样的右键单击上下文菜单

My JTable GUI

我右键单击我的文件,它会在 Windows 资源管理器中打开这个文件夹,在 Windows 资源管理器中打开一个文件/文件夹,我正在使用此代码

Desktop desktop = Desktop.getDesktop();
if (Desktop.isDesktopSupported()) {
}
try {
desktop.open(myFile); //myFile is my Selected File
} catch (IOException e) {
}

这会像这样在 Windows 资源管理器中打开 myFile

myimage

我希望它应该打开窗口并且应该在 Windows 资源管理器中选择我的文件。

enter image description here

谢谢

最佳答案

看这个:Open the windows explorer with a file selected in eclipse

enter image description here

例如,如果您想要选择文件夹(比方说)C:\myFolder,只需将参数替换为:

/select,C:\myFolder

关于Java 在 Windows 资源管理器中选择文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6801098/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com