WAP手机上的问卷调查系统的构建 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-22
ing s3 = getFromQuery(s1, "act="); Hashtable hashtable = getConfig(s2);//读取配置文件 if(hashtable.get("log") == null)//如果配置文件中没有log参数,则出现错误信息 { errorMessage("不能从你的配置文件中发现日志文件名!", hashtable, request, response); return; } if(s3.length() == 0) file://s3为act后的字符串 s3 = "vote"; if(((String)hashtable.get("cookies")).equals("1") && s3.equals("vote")) { Cookie acookie[] = request.getCookies(); file://设立cookie是为了防止用户多次投票 file://下面的循环是为了能找出你是否已经投过票 if(acookie != null) { for(int j = 0; j < acookie.length; j++) { Cookie cookie = acookie[j]; if(s2.equals(cookie.getName())) { errorMessage("你的投票被取消了", hashtable, request, response); return; } } } Cookie cookie1 = new Cookie(s2, "yes"); cookie1.setMaxAge(0x15180); response.addCookie(cookie1); } if(s3.equals("vote")) { takeVote(s, s2, hashtable, request, response); return; } if(s3.equals("log")) { showLog(s, hashtable, request, response); return; } if(hashtable.get("options") == null) { errorMessage("不能读入你的配置值", hashtable, request, response); return; } else { showVote(s, s2, hashtable, request, response); return; } } private void readConfig(String s, Hashtable hashtable) file://读取配置文件 { try { BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(s))); String s1; while((s1 = reader.readLine()) != null) file://从配置文件中读入一行参数字符串 { s1 = s1.trim(); file://移去s1中的空格 if(s1.length() > 0) { int i = s1.indexOf("=");//在s1中寻找“=”,i为被=分成的段数 i |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于WAP手机上的问卷调查系统的构建 - 编程入门网的所有评论