码迷,mamicode.com
首页 > 2014年07月16日 > 全部分享
[转]The culture name list in C#
Culture Names [C#]This example shows how to get all culture names in the .NET Framework. Use static methodCultureInfo.Get­Cultures. To get associated ...
分类:其他好文   时间:2014-07-16 15:25:54    阅读次数:228
Hibernate 所有缓存机制详解
hibernate提供的一级缓存hibernate是一个线程对应一个session,一个线程可以看成一个用户。也就是说session级缓存(一级缓存)只能给一个线程用,别的线程用不了,一级缓存就是和线程绑定了。hibernate一级缓存生命周期很短,和session生命周期一样,一级缓存也称sess...
分类:系统相关   时间:2014-07-16 12:19:19    阅读次数:436
Css Overflow 溢出属性实例代码
css属性实例
分类:Web程序   时间:2014-07-16 15:26:14    阅读次数:161
.NET中常见对象
.NET中六大内置对象:1.Response 2.Request 3.Session 4.Appliction 5.Server 6.CookieSystem.Web.HttpContext.Current.Server.MapPath()System.Web.HttpContext.Current...
分类:Web程序   时间:2014-07-16 15:27:13    阅读次数:206
代码编写横屏的UIView
- (id)initWithFrame:(CGRect)frame{ if(self= [superinitWithFrame:frame]) { // Important here, rotate THIS UIView [selfsetCenter:CGPointMake(160...
分类:其他好文   时间:2014-07-16 15:26:52    阅读次数:149
jquery中事件重复绑定以及解绑问题
一般的情况下,对于这种情况,我们常规的思路是,先解绑,再绑定,如下:$(selector).unbind('click').bind('click',function(){....});当这样会有一个问题,unbind会把其之前的所有的click事件都unbind掉,可能会影响其他的绑定,有如下有两...
分类:Web程序   时间:2014-07-16 15:26:37    阅读次数:197
DevExpress应用案例--语音识别器Dual Writer
Dual Writer是应用老牌界面控件DXperience WinForms Subscription开发的一款语音识别软件,可快速将语音转换为多种格式的文档,支持预览、打印和多种文档格式化。
分类:其他好文   时间:2014-07-16 12:18:37    阅读次数:235
opencv2函数学习之threshold:实现图像阈值化
在opencv2中,threshold函数可以进行阈值化操作。double threshold( const Mat& src, Mat& dst, double thresh,double maxVal, int thresholdType );参数:src:原图像。dst:结果图像。thresh...
分类:其他好文   时间:2014-07-16 15:27:33    阅读次数:262
javascript篇:javascript对象——Array
创建Array对象的语法:var myArray = new Array();//空数组,length为0var myArray = new Array(size);//长度为size,元素为undefinedvar myArray = new Array(element0,element1,......
分类:编程语言   时间:2014-07-16 15:27:53    阅读次数:268
使用fieldset标签结合CSS Lable实现表单的布局
CSS表单User Registration Form Personal Information Name: Email Address: Password: ...
分类:Web程序   时间:2014-07-16 12:18:01    阅读次数:208
DataGridView实现分页
using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Data;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2014-07-16 15:28:32    阅读次数:276
R语言代码规范
1、一般性规则避免使用attach写函数是尽量少的使用stop()定义S3和S4的对象不要混在一起使用2、文件命名以.r结束的文件,尽可能的增加信息在文件名里面,比如Good:predict_ad_revenue.RBad:foo.R3、变量名和函数命名规则# 注意,在R环境下,大小写是敏感的变量:...
分类:其他好文   时间:2014-07-16 15:28:17    阅读次数:231
判断数字正则表达式
好多种方式。可以用正则表达式,可以用其他过滤方式。using System.Text.RegularExpressions;/// /// 使用指定正则进行验证/// /// 正则表达式/// 待验证字符/// public static bool RegexValidate(string rege...
分类:其他好文   时间:2014-07-16 15:28:53    阅读次数:169
使用xxd命令把png图片转成c语言使用的数组
#!/bin/bashimage_list=$(ls *.png)for imag in ${image_list}do if test -f $imag then xxd -i ${imag} >> test.h fidone参考:http://www.cnblo...
分类:编程语言   时间:2014-07-16 15:29:12    阅读次数:260
spring下配置dbcp,c3p0,proxool
不管通过何种持久化技术,都必须通过数据连接访问数据库,在Spring中,数据连接是通过数据源获得的。在以往的应用中,数据源一般是Web应用服务器提供的。在Spring中,你不但可以通过JNDI获取应用服务器的数据源,也可以直接在Spring容器中配置数据源,此外,你还可以通过代码的方式创建一个数据源...
分类:数据库   时间:2014-07-16 12:17:16    阅读次数:289
使用MongoDB 2.6 C++驱动中的连接池
MongoDB2.6的CXX驱动(mongo-cxx-driver-26compat),内置包含了数据库连接池,方便管理数据库连接,但是官方文档说的比较晦涩,新手入门往往不知道怎样使用连接池获取数据库连接。本文简单介绍如何使用基本的连接池。 首先要明确的一点是,虽然有连接池类,但是不需要显示调用该类...
分类:数据库   时间:2014-07-16 15:29:32    阅读次数:331
div中图片居中
分类:其他好文   时间:2014-07-16 12:16:37    阅读次数:168
3709条   上一页 1 ... 33 34 35 36 37 38 39 ... 219 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!