2013年5月24日
摘要: <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv=" 阅读全文
posted @ 2013-05-24 19:13 CaptainLuffy 阅读(123) 评论(0) 推荐(0) 编辑
  2013年5月20日
摘要: 1、Servlet.service() for servlet [jsp] in context with path [/yunnar] threw exception [java.lang.NullPointerException] with root cause 当查不出java代码有什么错误时,可以考虑看看是不是数据库里相应的表里有空值 阅读全文
posted @ 2013-05-20 21:17 CaptainLuffy 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 1、Object 不能转换成 int 但是可以转换成Integer类型2、List<Map<String,Object>>首先是一个列表,列表里存放的是map 类型数据,map中key是string类型,value是object类型Map<String,Object>map=newHashMap<String,Object>();map.put("key1","value1");map.put("key2","value2");List<Map<Strin 阅读全文
posted @ 2013-05-20 21:16 CaptainLuffy 阅读(94) 评论(0) 推荐(0) 编辑
摘要: String sql = "select allow_pic,allow_text,allow_link,price from ad_module where alias= shouye3;报出Unknown column 'shouye3' in 'where clause'的错误原因是:alias是字符类型的数据,查找应该加上引号。改成select allow_pic,allow_text,allow_link,price from ad_module where alias='shouye3'就不会报错了 阅读全文
posted @ 2013-05-20 20:13 CaptainLuffy 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 原因:判断是否登录解决方法:加入<% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; System.out.println(request.getParameter("page")); String currentPage = request.g 阅读全文
posted @ 2013-05-20 16:12 CaptainLuffy 阅读(155) 评论(0) 推荐(0) 编辑
  2013年5月17日
摘要: 每次服务器发布代码后,最好重新打开浏览器,以防止网页的缓存或者cookie的内容显示到网页上,扰乱自己代码的调试 阅读全文
posted @ 2013-05-17 20:35 CaptainLuffy 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 打搅可能都遇到过在写javascirpt代码时传递中文,在后台取到时发现是乱码,这里把我今天做的方法写出来,希望对大家以后有用!方法(一):html页面:function testOne() {var url = "testOne_test.do?expr="+你好;location = encodeURI(url);}后台java代码:String expr = new String(request.getParameter("expr").getBytes("ISO-8859-1"),"UTF-8");方法(二 阅读全文
posted @ 2013-05-17 20:29 CaptainLuffy 阅读(160) 评论(0) 推荐(0) 编辑
  2013年5月16日
摘要: http://www.w3school.com.cn/tags/att_a_target.asp1、html中设置table的边框颜色可以在table标签中直接使用style属性 <table style="border: solid thin red"> 或者是使用css,当然,推荐使用css table {border: solid thin red;}2.HTML里table中套一个table置顶<td valign="top" > <table> </table></td> 阅读全文
posted @ 2013-05-16 20:28 CaptainLuffy 阅读(315) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/cai1213/article/details/8003445 阅读全文
posted @ 2013-05-16 16:50 CaptainLuffy 阅读(79) 评论(0) 推荐(0) 编辑
摘要: http://yiyiboy2010.iteye.com/blog/1412327 阅读全文
posted @ 2013-05-16 16:35 CaptainLuffy 阅读(103) 评论(0) 推荐(0) 编辑