如何使用 jax-rs 设置分段/表单文件上传请求?

发布于 2024-11-02 14:20:18 字数 250 浏览 4 评论 0原文

我有以下设置,但我不确定如何测试该服务。我不确定如何设置请求、请求标头、请求正文、表单参数、内容类型...等。我一直用 谷歌休息客户端,但也许这不适合这个用例。

我该怎么办使用 jax-rs 上传多部分/表单文件?

I have the below setup but I'm unsure how to test the service. I'm not sure how to setup the request, the request headers, request body, form params, content type...etc. I've always use
the google rest client, but maybe thats not appropriate for this use case.

How do I do a multipart/form file upload with jax-rs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女净妖师 2024-11-09 14:20:18

您可以使用 Firefox Poster,或者一个真正简单的测试是用 HTML 创建一个表单并提交它。您需要将文件名更改为您在服务中查找的任何名称。

<form action="yourservicecall" method="post" enctype="multipart/form-data">
    <label for="file">Filename:</label>
    <input type="file" name="file" id="file" />
    <br />
    <input type="submit" name="submit" value="Submit" />
</form>

You can use Firefox Poster or a real simple test would be for you to create a form in HTML and submit it. You'll want to change the name of the file to whatever you are looking for in your service.

<form action="yourservicecall" method="post" enctype="multipart/form-data">
    <label for="file">Filename:</label>
    <input type="file" name="file" id="file" />
    <br />
    <input type="submit" name="submit" value="Submit" />
</form>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文