自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

驱动开发

菜鸟学习笔记

  • 博客(13)
  • 资源 (5)
  • 收藏
  • 关注

原创 推荐网站

日语在线翻译:http://translate.adaffiliate.net http://www.onlinedic.comhttp://www.excite.co.jp/world/chinesehttp://www.linyiren.com/fy/日语在线词典:http://www.sanseido.net海网日语:http://www.stujp.com/index.html外文

2007-04-30 10:57:00 1137

原创 Jsp避免Form重复提交的三种方案

1. JavaScript,设置一个变量,只允许提交一次。     var checkSubmitFlg = false;      function checkSubmit()   {         if (checkSubmitFlg == true)      {       return false;         }         checkSubmitFlg = true; 

2007-04-30 10:44:00 774

原创 vc编译Unicode

在vc中把代码编译成Unicode码:1. project  -->settings -->c/c++ : preprocessor definitions : 添加:UNICODE,_UNICODE2. project -->settings -->link : Gategory -->output : Entry-point Symbol : wWinMainCRTStartup 

2007-04-30 10:19:00 1113

原创 eclipse未加载插件

问题: 有时候启动eclipse发现插件没有被加载。解决方法:a.删除整个目录: /eclipse/configuration/org.eclipse.update,重启eclipse。b.在启动eclipse时带上-clean参数。c.在/configuration/config.ini文件中加入一行 osgi.checkConfiguration=true   这样它会寻找并安

2007-04-26 12:40:00 1208

原创 html禁止鼠标操作

在html页面禁止鼠标操作 :                oncontextmenu="return false"         ondragstart="return false"       onselectstart="return false"                onselect="document.selection.empty()"          oncopy

2007-04-26 11:32:00 2551

原创 限制的长度

限制的长度(为100) :      function   length()      {                    if(document.forms[0].txt.value.length > 100)                               event.KeyCode=0;      }

2007-04-26 11:26:00 623

原创 自动转换输入法

IME:输入法编辑器(Input Method Editor),它是一种专门的应用程序。点击输入框,自动转换输入法: active:指定所有使用IME输入的字符,即激活本地语言输入法。 inactive:指定所有不使用IME输入的字符,即激活非本地语言输入法。 auto:不影响IME的状态,与不指定ime-mode时一样。 disable:完全禁止IME。

2007-04-26 11:20:00 735

原创 解决JSP中文乱码问题

解决Jsp中文乱码3招:1)   request.setCharacterEncoding("gb2312");//解决表单传递乱码2)    //从数据库中取出后给name转码          name = new String (name.getBytes("iso-8859-1","gb2312");3)    //存入数据库前给name转码      name = new S

2007-04-26 11:12:00 1196 1

原创 正则表达式

java_home=D:/jdk1.5.0_04 (安装路径)classpath=.;D:/jdk1.5.0_04/lib/tools.jar;D:/jdk1.5.0_04/lib/dt.jar;D:/jdk1.5.0_04/binpath= D:/jdk1.5.0_04/bin 

2007-04-26 10:59:00 680

原创 在Java中使用正则表达式

在Java中使用正则表达式:Pattern     p  =  null;    //正则表达式Matcher   m  =  null;   //操作的字符串boolean  b;String       s  =  null;StringBuffer   sb  =  null;int     i  =  0;//判断字符串是否匹配p  =  Pattern.compile("a*b"

2007-04-26 10:45:00 769

原创 JavaScript提交表单

用JavaScript提交表单并传递参数:     function    submitFunction(parameter)     {            document.forms[0].action="/Login.do?method=parameter&index="+parameter;           document.forms[0].submit();     }

2007-04-26 10:31:00 1000

原创 学习spring步骤

1.Java基础,面向对象的基础,设计模式的基础。三种模式:factory, strategy,Template mothod。   建议:>第四章。2.夏昕>>3.研究spring开源项目:appfuse,jpetstore.4.开始做实际项目。5.继续深入学习(三本经典名著)   1)>   2)>   3)>

2007-04-26 10:24:00 1213

原创 Eclipse启动参数

Eclipse 的启动参数作用很大:在工作中总能用到.1.如何设置参数: 首先创建Eclipse的快捷方式。打开快捷方式的属性,在link里添加。2.参数说明: 1)eclipse -nl en_US将启动英文语言, 这个特性在安装了国际化语言包以后特别有用, 可以方便的切换各个语言的版本.eclipse.exe -nl "de"   ---------德语eclipse.exe

2007-04-24 11:19:00 3047

android game development part4

Get started with game apps development for the Android platform

2011-05-10

android game development part3

Get started with game apps development for the Android platform

2011-05-10

android game development part2

Get started with game apps development for the Android platform

2011-05-10

android game development

Get started with game apps development for the Android platform

2011-05-10

InstallShield教程

InstallShield简明教程

2007-07-27

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除