1,使用python链接mysql # -*- coding: utf-8 -*-#
connect.py --连接到MySQL服务器import sysimport MySQLdbtry: conn = MySQLdb.connect(db =
"cookbook", host = "localh...
分类:
数据库 时间:
2014-07-22 23:11:15
阅读次数:
518
参考资料:
http://sebug.net/paper/books/dive-into-python3/native-datatypes.html
http://blog.csdn.net/hazir/article/details/101597091、Boolean【布尔型】# coding.....
分类:
编程语言 时间:
2014-07-22 23:10:15
阅读次数:
371
http://blog.csdn.net/humingfiy/article/details/7946408Collection:List、SetMap:HashMap、HashTable如何在它们之间选择一、Array
,ArraysJava所有“存储及随机访问一连串对象”的做法,array是最有...
分类:
其他好文 时间:
2014-07-22 23:08:52
阅读次数:
394
#安装1.进入Eclipse, Help->Install New
Software,点击Add按钮:Name: PyDev(随意) Location:
http://pydev.org/updates2.选择PyDev下的PyDev for Eclipse,别的都不要选,否则依赖检查那关过不去。按...
分类:
编程语言 时间:
2014-07-22 23:07:35
阅读次数:
415
http://mobile.51cto.com/android-259861.htm实现第一点好办,添加一个标志位boolean
bl来控制按钮的Enable状态,实现第二点就是将View.onClickListener添加到List列表中1、MyAdapter.java继承自BaseAdapter...
分类:
其他好文 时间:
2014-07-22 23:07:14
阅读次数:
339
List类Vector和ArrayList的区别:1版本不同,Vector属于jdk1.0,而ArrayList属于jdk1.2后的版本。2,效率上ArrayList比Vector要高,同时vector线程安全,而arraylist线程不安全。ArrayList与LinkedList的区别:1,结构...
分类:
其他好文 时间:
2014-07-22 23:07:12
阅读次数:
237
设置不使用缓存的过滤器功能描述 将HTTP响应头信息中的缓存参数设置为不进行缓存。使用方法 在
java web 项目的 web.xml 文件中添加如下代码。 ClearCacheFilter com.hmw.filter.ClearCacheFilter
ClearCacheFilt...
分类:
其他好文 时间:
2014-07-22 23:06:33
阅读次数:
311
Linux tar command usageLinux tar command
usageTable of Contents1. Create an archive:2. Create a gzipped archive:3. List
the files in an archive4. Add ...
分类:
系统相关 时间:
2014-05-01 16:16:01
阅读次数:
586
List lst = new List(); lst.Add(new Person("A",
"1")); lst.Add(new Person("C", "2")); lst.Add(new Person("B", "3")); ...