String name = new String(request.getParameter("ZY").getBytes("ISO-8859-1"), "UTF-8"); //System.out.print(name); if (name == null || name.isEmpty()) { %> <a href="SouSuo.jsp">请输入中药名称,点击返回重新输入</a> <% }else{ Connection conn = null; Statement stmt = null; ResultSet rs = null; try { conn = SQLConn.openDB(); stmt = conn.createStatement(); String sql = "select ZYName,YLName,YDY,YX,GX,ZhongYao.ZZ as ZZ from Yaolei,ZhongYao where Yaolei.YLID=ZhongYao.YLID and ZYName like ?"; PreparedStatement pstmt = conn.prepareStatement(sql); pstmt.setString(1, "'%" + name + "%'"); rs = pstmt.executeQuery(); int count = 0; if(rs.next()){输入正确的数据,为什么rs.next()为空
时间: 2024-03-04 08:48:18 浏览: 110
根据你提供的代码,可能是因为在设置 PreparedStatement 的参数时,字符串前后多了一个单引号,导致匹配不到数据。正确的设置方式应该是:
```
pstmt.setString(1, "%" + name + "%");
```
这样设置参数时,会在输入的字符串前后添加通配符 `%`,从而实现模糊匹配。另外需要注意的是,执行查询语句后,需要将结果集的指针移动到第一行数据,即调用 `rs.first()` 方法,才能开始获取结果集中的数据。
相关问题
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub String username = new String(request.getParameter("username").getBytes("ISO-8859-1"), "GBK"); String filePath = new String(request.getParameter("filePath").getBytes("ISO-8859-1"), "GB2312"); String fileName = new String(request.getParameter("fileName").getBytes("ISO-8859-1"), "GB2312"); //String path = "/user/hadoop/zhangsan/"; String path = "/user/fxb/favor/" + username + "/"; }
根据您提供的代码片段,您正在使用HttpServletRequest对象的getParameter方法来获取URL参数。在这种情况下,如果getParameter方法返回null,可能是以下原因之一导致的:
1. 参数未正确传递:请确保在URL中正确传递了名为"username"、"filePath"和"fileName"的参数。
2. 参数编码问题:您正在使用getBytes方法将参数从ISO-8859-1编码转换为GBK或GB2312编码。请确保编码转换正确,并且与请求参数的实际编码一致。
3. 参数名称错误:请检查参数名称是否正确拼写,并且与URL中的参数名称完全匹配。
请注意,您在代码中给出的路径变量path没有被使用,如果您希望使用该路径,请确保在适当的位置使用它。
如果问题仍然存在,请提供更多关于请求和响应的细节,以便我们更好地帮助您解决问题。
String account=new String(request.getParameter("username3").getBytes("ISO-8859-1"), "UTF-8");获取不到值
这个问题可能是由于编码问题引起的。你可以尝试以下几种方法解决:
1. 在前端页面中,确保表单提交时使用的编码格式为 UTF-8,可以在表单的 form 标签中添加 accept-charset="UTF-8" 属性。
2. 在后端代码中,尝试使用 request.setCharacterEncoding("UTF-8") 设置请求的编码格式为 UTF-8。
3. 如果以上方法仍然无效,可以尝试在获取参数值时,使用 URLDecoder.decode() 方法进行解码,例如:
String account = URLDecoder.decode(request.getParameter("username3"), "UTF-8");
希望能够帮到你解决这个问题。
阅读全文