回到javaweb的第三十七天(一)(注册 邮箱激活\登录)
就可以在这个位置去添加tomcat并且启动了。
https://blog.csdn.net/woniu211111/article/details/54429051
maven下载依赖慢的话,就需要你去调一个镜像了。
上面这件事情的话,就是教会你:如何在html页面里面,得到数据库等内容,去动态显示,就是要学会绑定事件、学会用ajax
对于路径而言,第一条路径 第三条路径都是可以的。
第二条路径不行。
自己就记得,要加上虚拟目录 然后的话虚拟目录最前面要加/就行了。
解决servlet得到的中文的问题:
request.setCharacterEncoding("utf-8");//gbk 不行 utf8不行 gb2312也不行
String username=request.getParameter("username");
username=new String(username.getBytes("iso8859-1"),"UTF-8");
登录:
登录的话,中文问题,使用
request.setCharacterEncoding("utf-8");//gbk 不行 utf8不行 gb2312也不行
String username=request.getParameter("username");
username=new String(username.getBytes("iso8859-1"),"UTF-8");
这仨句话不行。
request.setCharacterEncoding( "UTF-8" ); |
01
02
03
|
String username=request.getParameter( "username" ); username= new String(username.getBytes( "iso8859-1" ), "UTF-8" ); |