摘要: %PATH% 代表的是可执行文件的搜索路径,默认为 Windows 目录(C:\windows)和系统目录(C:\windows\system32),在此两个目录中的文件或文件夹不需要输入完整路径即可通过运行打开。如,在运行中输入 system32:打开 C:\windows\system32 文件夹,输入 notepad:打开 C:\windows\notepad.exe (就是记事本),输入 dllcache:打开 C:\windows\system32\dllcache 文件夹,等等。只要是这两个文件夹内的文件或文件夹,直接输入名称即可打开。你还可以把其他路径加入到 %Path% 变量, 阅读全文
posted @ 2012-05-15 22:14 刘振明 阅读(630) 评论(0) 推荐(0)
摘要: <embed src="http://player.youku.com/player.php/sid/XMTE0MTY0NTc2/v.swf"></embed> 阅读全文
posted @ 2012-05-15 22:07 刘振明 阅读(154) 评论(0) 推荐(0)
摘要: <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>js</title></head><script language="javascript">function aa(){ var r=document.getElementsByName("r"); for(var i=0;i<r.length;i++){ 阅读全文
posted @ 2012-05-15 21:25 刘振明 阅读(15177) 评论(0) 推荐(3)
摘要: ①selectByPrimaryKey()User user = userDAO.selectByPrimaryKey(100); 相当于select * from user where id = 100②selectByExample() 和selectByExampleWithBLOGs()UserExample example =newUserExample();Criteriacriteria = example.createCriteria();criteria.andUsernameEqualTo("joe");criteria.andUsernameIsNul 阅读全文
posted @ 2012-05-15 21:21 刘振明 阅读(1515) 评论(2) 推荐(0)