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.
您好我正在尝试在 POST 请求中将关联数组发送到 JSP servlet。如何在 servlet 中处理该数组。我还能做到吗?我只想将该 assoc 数组转换为 JSP 中的哈希集/表。
最简单的方法是发布一些 JSON,然后在 servlet 中使用 JSON。Jackson 库可以使用一行代码将 JSON 解组为 HashMap(或等效)。
如果您向我们提供一些示例数据,那么我可以建议一些代码......