public class JdbcUtil { private static
ComboPooledDataSource dataSource =new ComboPooledDataSource(); public static
ComboPooledDataSource getDataSourc...
分类:
其他好文 时间:
2014-05-08 14:32:39
阅读次数:
218
c# 获取字符串中的数字 /// /// 获取字符串中的数字 /// /// 字符串 /// 数字
例子1: public static decimal GetNumber(string str) { decimal result = 0; if (str
!= null && str != str...
分类:
其他好文 时间:
2014-05-08 13:32:21
阅读次数:
347
java.lang.String.indexOf(char
ch)方法返回字符ch在指定字符串中第一次出现的下标索引位置如果字符ch在指定的字符串中找不到,则返回-1示例:import
java.lang.*;public class StringDemo { public static void....
分类:
编程语言 时间:
2014-05-08 13:02:04
阅读次数:
423
今天遇到一些一般不常用,但说不定什么情况下就能用到的C#关键字。转换关键字explicit定义强制转换//
Must be defined inside a class called Fahrenheit:public static explicit operator
Celsius(Fahrenh...
分类:
其他好文 时间:
2014-05-08 12:42:03
阅读次数:
330
之前都是用扩展方法来copy属性值,不过兼容性不是很好。(关于这个扩展方法可以参照这个博客),不过我们可以通过下方的代码来实现,由于是微软提供的功能,所以不需要考虑兼容性问题:public partial class WebForm2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventAr...
分类:
其他好文 时间:
2014-05-08 00:19:02
阅读次数:
326
今天做了一下老师给的第一套题,第一题是判断一个字符串是否在另一个字符串中:做了一下,感觉有好多种写法,java中的类真的好多啊,要掌握好一些基本类的用法:
package com.exam.e120;
public class java1 {
public static void main(String[]args){
String str1,str2;
str1="I am Tom...
分类:
编程语言 时间:
2014-05-08 00:02:39
阅读次数:
423
static class Program { public static
System.Threading.Mutex Run; /// /// 应用程序的主入口点。 /// ...
分类:
其他好文 时间:
2014-05-07 21:01:35
阅读次数:
367
一、单个参数:public List getXXBeanList(String
xxCode); 其中方法名和ID一致,#{}中的参数名与方法中的参数名一直, 我这里采用的是XXXBean是采用的短名字,select
后的字段列表要和bean中的属性名一致, 如果不一致的可以用 as 来补充。...
分类:
其他好文 时间:
2014-05-07 20:41:12
阅读次数:
281
public bool UnRAR(string destPath, string
rarfilePath) { try { // destPath = @"E:\youxiaodi\temp"; //目标位...
分类:
其他好文 时间:
2014-05-07 20:35:48
阅读次数:
322
使用findByPk()根据数据表主键查询的是对象,不需要使用foreach()循环出来但是使用findall()和find()查询的是对象类型的数组需要使用foreach()循环出来=======================================
public function...
分类:
其他好文 时间:
2014-05-07 20:32:35
阅读次数:
565