如何在中发送两个参数href 用于下载文件?
例如:我尝试发送单个参数,现在我需要使用请求正文发送两个参数
因此如何实现此问题或“如何通过请求主体发送filepath到Servlet”
, ?filename =“+map.get(“ filename”)+“> download</a>“);
Ex: i try to send single parameter , now i need to send two parameter with request body
so how to achieve this or "how to send filepath via request body to servlet"
out.println(" <a href=Download?filename="+map.get("filename")+">Download</a>");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查询字符串(即'?'之后的URL部分)可以包含多个参数。用'&amp;'将它们分开。示例:
wikipedia在查询字符串上输入。
Query string (i.e. the part of URL after '?') can contain multiple parameters. Separate them with '&'. Example:
Wikipedia entry on query strings.