loadrunner安装指南
setSecure(Boolean flag);设置浏览器是否仅仅使用安全协议来发送cookie,例如使用Https或ssl
setValue(String newvalue);cookie创建后设置一个新的值
setVersion(int v);设置cookie所遵从的协议版本.
例如:Cookie cookie = new Cookie("username",username);
cookie.setMaxAge(60*60*24*365); //一年过期
cookie.setPath("/");
response.addCookie(cookie);//添加到硬盘
下面是我找到的JSP与数据库(mysql)连接的代码:
<%@ page language="java" import="java.util.*,java.sql.*" pageEncoding="GB2312" contentType="text/html"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<script language="javascript">
functionon_submit()
{
if(ername.value=="")
{
alert("用户名不能为空,请输入用户名!");
ername.focus();
return false;
}
if(erpassword.value=="")
{
alert("密码不能为空!请输入密码!");
erpassword.focus();
return false;
}
}
</script>
<%
String path = request.getContextPath();
String basePath =
request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%!public String codeToString(String str)