为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我最初的时候是个东西?不是空的?

http://img1.sycdn.imooc.com//594681e900015bec04030213.jpg

<%@ page language="java" contentType="text/html; charset=utf-8"

    pageEncoding="utf-8"%>

<%@ page import="java.net.*" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>Insert title here</title>

</head>

<body>

<%

request.setCharacterEncoding("utf-8");


String username="";

String password="";

Cookie[] cookies=request.getCookies();

if(cookies!=null&&cookies.length>0){

for(Cookie c:cookies){

if(c.getName().equals("username")){

username=URLDecoder.decode(c.getValue(),"utf-8");

}

if(c.getName().equals("password")){

password=c.getValue();password=URLDecoder.decode(c.getValue(),"utf-8");

}

}

}

%>

<form action="loginOn.jsp" method="post" name="form">

<table>

<tr>

<td>User:

</td>

<td><input name="username" type="text" value="<%=username %>>" />

</td>

</tr>

<tr>

<td>Password:

</td>

<td><input name="password" type="password" value="<%=password %>>" />

</td>

</tr>

<tr>

<td colspan="2" ><input name="isUseCookie" type="checkbox" />是否保存账号信息

</td>

</tr>

<tr>

<td colspan="2"><input type="submit" value="登陆"/>

</td>

</tr>

</table>

</form>

</body>

</html>


正在回答

2 回答

找出来了!!!手贱加了个>我靠

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我最初的时候是个东西?不是空的?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信