gpt4 book ai didi

java - 在java中移动文件

转载 作者:行者123 更新时间:2023-12-02 07:08:28 24 4
gpt4 key购买 nike

到目前为止,这是我的代码,我想将所选文件移动到我稍后将在代码中定义的路径,如何从所选文件获取路径

import java.awt.Component;
import javax.swing.JFileChooser;



public class CopyFileExample
{
public static void main(String[] args)
{

final JFileChooser fc = new JFileChooser();
Component aComponent = null;
int returnVal = fc.showOpenDialog(aComponent);
}
}

最佳答案

您可以通过以下方式获取所选文件:

if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fc.getSelectedFile();
...
} else {
// this means that the user closed the dialog or pressed Cancel
}

关于java - 在java中移动文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15832269/

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