赞
踩
在与鸿蒙前端交互中,发现让前端为post模式发送数据,java使用通用方法收到的数据怎么都为空,而get方法都可以正常使用。发现,鸿蒙以post方式传来的数据和get方法,以及html的post方法传来的数据不同。只能通过post的特有的方法BufferedReader来查看。查看结果如下
在鸿蒙http文档发现,默认为json格式
而其他方式如html方式
而用通用方法是按照=和&符号分割的,因此上方鸿蒙传递来的参数无法分割也就无法实现直接通用参数获取。
解决方法:
解决方法1:
因为arkts默认传输数据为json模式,所以json转化为javabean。
首先需要将maven依赖导入此jar包
<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>2.0.32</version> </dependency>
然后创建一个类,接受数据。
如user类接受账户和密码
最后代码实现转换
解决方法2
首先需要将maven依赖导入此jar包
<dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.10.1</version> </dependency>
然后写此代码将用post方式获取的参数,装入map集合中,只需要看dopost代码即可
- @WebServlet("/http")
- public class MyHttpDemo extends HttpServlet {
- @Override
- protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
- System.out.println("get");
- Map<String,String[]> map=req.getParameterMap();
- System.out.println(map);
- for (String key : map.keySet()) {
- System.out.print(key+":");
- String[] values = map.get(key);
- for (String value : values) {
- System.out.print(value+" ");
- }
- System.out.println();
- }
- String uesrname = req.getParameter("username");
- String password = req.getParameter("password");
- resp.getWriter().write("登录成功");
- System.out.println(uesrname+" "+password);
- }
- @Override
- protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
- System.out.println("post");
- Gson gson = new Gson();
- Map<String, String[]> map=new HashMap<String, String[]>();
- map = gson.fromJson(req.getReader().readLine(), map.getClass());
- System.out.println(map.get("username"));
- resp.getWriter().write("登录成功");
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。