gpt4 book ai didi

java - 使用java程序将文件从一个位置复制到Linux中的另一个位置

转载 作者:行者123 更新时间:2023-11-30 05:07:34 25 4
gpt4 key购买 nike

我尝试使用 JSP 将客户 Logo 移动到 Linux 中的另一个位置,但它不起作用。提前致谢

这是我的程序

String customerLogo = request.getParameter("uploadCustomerLogo").trim();

StringBuffer absoluteFolderPath = new StringBuffer();

absoluteFolderPath.append("/zoniac");

absoluteFolderPath.append("/Companies/");

absoluteFolderPath.append("companyCode/");

absoluteFolderPath.append("custom/");

String destination = absoluteFolderPath.toString();

File sourcefile = new File(customerLogo);

File destfile = new File(destination+sourcefile.getName());

FileUtils.copyFile(sourcefile,destfile);

最佳答案

最好在servlet中编写java代码。

此方法将起作用,您需要提供文件的物理路径,看来您正在网络上下文中提供相对路径。

关于java - 使用java程序将文件从一个位置复制到Linux中的另一个位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4568857/

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