gpt4 book ai didi

JavaFX在拖放完成后获取拖放目标文件夹

转载 作者:IT老高 更新时间:2023-10-28 20:54:44 24 4
gpt4 key购买 nike

Java Oracle 社区问题 (https://community.oracle.com/thread/3934986)

The Problem:

我已经为 Button 设置了下面的代码,它的全名代表文件路径。所以当 Button 被拖到文件夹或桌面时(假设在Windows😛) 它被用户的操作系统复制。

我想获取已完成放置的目标文件夹。

Code:

button.setOnDragDetected(event -> {

/* allow copy transfer mode */
Dragboard db = startDragAndDrop(TransferMode.COPY,TransferMode.LINK);

/* put a string on dragboard */
ClipboardContent content = new ClipboardContent();

/*Adding a file into the ClipboardContent*/
content.putFiles(Arrays.asList(new File(getSongPath())));

........//not showing this code....

db.setContent(content);

event.consume();

}

编辑:(29/09/2016)

When the drop is done:

setOnDragDone(d -> {
System.out.println(
"Drag Done,is drop completed?" + d.isDropCompleted() + " , is accepted?" + d.isAccepted());
System.out.println("Accepted Mode:" + d.getAcceptedTransferMode());
System.out.println(" Target:" + d.getTarget() + " Gestoure Target:" + d.getGestureTarget());
});

我得到这个输出,你可以看到 Gesture Target == null

Drag Done:true , s drop completed?false , is accepted?true
Accepted Mode:COPY
Target:SmartController$TableViewer@112437[styleClass=table-view] Gesture Target:null

最佳答案

我做了一些研究,可能不可能。例如这个线程:Get file path for drag-n-drop file on Windows Explorer

你可以试试这个解决方法:

  • 在 setOnDragDetected() 中制作您要删除的文件的副本,并将此复制的文件路径放在 content.putFile 中
  • 将 TransferMode.COPY 更改为 TransferMode.MOVE
  • 开始监控复制的文件以检测它的移动位置 - 现在这是棘手的部分。其中一些库可能会有所帮助:Java: File Renaming Detection

这只是一个解决方法的想法(我没有完全测试,但值得检查)

编辑 1: 值得一读。如何在 Windows 上进行文件夹检测:

http://www.codeproject.com/Articles/23207/Drag-and-Drop-to-Windows-Folder-C

关于JavaFX在拖放完成后获取拖放目标文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37237837/

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