gpt4 book ai didi

java - 如何选择文件路径而不是上传文件?

转载 作者:行者123 更新时间:2023-12-01 18:08:28 25 4
gpt4 key购买 nike

我想发布一个字符串,它是文件的路径,而不是上传文件(多部分)。

此代码上传文件:

@RequestMapping(method=RequestMethod.POST, value="/index")
public void singleFileUpload(@RequestParam("file") MultipartFile file,
RedirectAttributes redirectAttributes) throws IllegalStateException, IOException {

.
.
}


<form method="POST" action="index" enctype="multipart/form-data">
<input type="file" name="file" /><br/><br/>
<input type="submit" value="Submit" />
</form>

这是用来上传文件的,但我只想获取文件的路径。我怎样才能做到这一点?请帮忙。

最佳答案

使用像这样的 JavaScript hack

var form = document.getElementById(myFormID);
form.addActionListener("submit", function(e) {
e.preventDefault(); //prevent the form from default submission
//get the path from your input, and submit that instead
});

关于java - 如何选择文件路径而不是上传文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60511684/

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