j2me和jsp的交互问题 在线等待 。 。 。 。 。 。
j2me 访问jsp页面 http://localhost:8080/examples/today.jsp
<%! String name; %>
<%
name = request.getParameter("name");
out.println("Got: "+name);
%>
然后在j2me输入name
然后再接收jsp传回来的name
可是我的总是有错
而如果这样写
http://localhost:8080/examples/today.jsp?name=a
则没有错误
请问这是为什么