Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个弹簧控制器来处理多部分请求并上传一个 csv 文件。如何用java编写客户端来测试这个控制器?
我需要调用我已映射到控制器的 url,但我应该在有效负载中发送什么(一个 csv 文件或带有逗号分隔文本的字符串并在标题中发送一个 contentType)。
任何人都可以帮忙吗?
从命令行使用curl命令,您不需要编写 java 客户端。
样本
curl -F "file=@localfile;filename=nameinpost" www.myhost.com