Resteasy(multipart/form-data):如何读取多值字段值到列表?
我需要一点帮助来放松。 我有一个包含一些多值字段的多部分网络表单。 我的主题参数请求数据:
------WebKitFormBoundary2sX84QQsaESs9qTv
Content-Disposition: form-data; name="topics"
3569
------WebKitFormBoundary2sX84QQsaESs9qTv
Content-Disposition: form-data; name="topics"
18421
------WebKitFormBoundary2sX84QQsaESs9qTv
Content-Disposition: form-data; name="topics"
9703
如何读取“主题”参数以列出? 这就是我的主题参数属性的注释方式
@FormParam("topics")
private String[] topics;
,但我得到一个例外:
Unable to find a MessageBodyReader for media type: text/plain;charset="us-ascii" and class type [Ljava.lang.String;
任何帮助或示例将不胜感激。
亲切的问候
阿曼多
I need a little help with resteasy.
I have a multipart web form with some multi-value fields.
My request data for topics parameter:
------WebKitFormBoundary2sX84QQsaESs9qTv
Content-Disposition: form-data; name="topics"
3569
------WebKitFormBoundary2sX84QQsaESs9qTv
Content-Disposition: form-data; name="topics"
18421
------WebKitFormBoundary2sX84QQsaESs9qTv
Content-Disposition: form-data; name="topics"
9703
How can I read "topics" parameter to list ?
This is how my property for topics parameter is annotated
@FormParam("topics")
private String[] topics;
but I get an exception:
Unable to find a MessageBodyReader for media type: text/plain;charset="us-ascii" and class type [Ljava.lang.String;
Any help or example would be greatly appreciated.
Kind regards
Armando
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您要找的吗?
Is this what you're looking for?