gpt4 book ai didi

java - 在 Linux 服务器 Java 中创建一个文件

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:04:42 25 4
gpt4 key购买 nike

我从客户端上传了一个 csv 文件,我想在服务器端创建这个文件。

这是我的功能

    public void uploadFile(FileUploadEvent e) throws IOException{

UploadedFile uploadedCsv=e.getFile();

String filePath="//ipAdress:/home/cg/Temp/input/ressource.csv";

byte[] bytes=null;

if(uploadedCsv != null){
bytes=uploadedCsv.getContents();
BufferedOutputStream stream = new BufferedOutputStream(new FileOutputStream(new File(filePath)));
String filename = FilenameUtils.getName(uploadedCsv.getFileName());
stream.write(bytes);
stream.close();
}
}

当我想写入文件时出现异常(没有这样的文件或目录)

SEVERE: java.io.FileNotFoundException: /ipAdress:/home/cg/Temp/input/ressource.csv (No such file or directory)

知道服务器上创建了/home/cg/Temp/input路径

最佳答案

你能不能试试:

String filePath="////ipAdress/home/cg/Temp/input/ressource.csv";

代替:

String filePath="//ipAdress:/home/cg/Temp/input/ressource.csv";

还有这个:

new File(new URI(filePath))

代替:

new File(filePath)

或者您可以使用 jcif API How can I open a UNC path from Linux in Java?

关于java - 在 Linux 服务器 Java 中创建一个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45549319/

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