皮皮网
皮皮网

【米人源码】【员工业务流程步骤源码】【海免溯源码撕了没有痕迹】httpjspbase源码

时间:2024-12-27 13:54:24 来源:星战前夜 源码

1.http status 500错误
2.java.lang.NullPointerException

httpjspbase源码

http status 500错误

       String sidd=(String)request.getParameter("fid");

       if (sidd==null || "".equals(sidd)) sidd="0";

       int id=Integer.parseInt(sidd);

       试试呢..

       加个判空,米人源码可能是fid参数没传过来,null转整型抛异常了.

java.lang.NullPointerException

       å¾ˆå¤šå¯èƒ½ä¸ºnull的情况你都没处理,当然会出NullPointerException 错误

       æ¯”如:

       String username=request.getParameter("username");

       String password=request.getParameter("password");

       String str="select * from tb_user where"+"username="+username+"and password="+password;

       åº”该改成:

       String username=request.getParameter("username");

       String password=request.getParameter("password");

       if(username != null && password != null){

       String str="select * from tb_user where"+"username="+username+"and password="+password;

       â€¦â€¦â€¦â€¦â€¦â€¦

       â€¦â€¦â€¦â€¦â€¦â€¦

       }

       ä¸‹é¢çš„代码自己再检查检查,类似的情况都要先判断

更多内容请点击【娱乐】专栏