码迷,mamicode.com
首页 >  
搜索关键字:eclipse install new    ( 137168个结果
orcale设置自增列
create sequence SEQ_ERRORID minvalue 1 maxvalue 99999999 start with 1000 increment by 1 nocache order; create or replace trigger tri_ERRORINFO_...
分类:其他好文   时间:2014-05-01 13:32:20    阅读次数:335
从指定的路径中查找含有特殊字符串的文件
import java.io.*;import java.util.*;import java.util.concurrent.*;public class SearchFile{ public static void main(String ... strings) { final int FI....
分类:其他好文   时间:2014-05-01 13:18:50    阅读次数:253
"只能在执行Render()的过程中调用RegisterForEventValidation" 解决方案
开发中遇到令人蛋疼的问题:只能在执行Render()的过程中调用RegisterForEventValidation当出现的异常的提示:异常详细信息: System.InvalidOperationException:只能在执行Render()的过程中调用RegisterForEventValida...
分类:其他好文   时间:2014-05-01 13:16:15    阅读次数:400
Iterator和Enumeration
iterator的hasNext() 和 next()方法用于enumeration的hasMoreElements() 和 nextElement()iterator it = a.itreator();Enumeration en = new Enumeration(){@Overridepub...
分类:其他好文   时间:2014-05-01 12:59:57    阅读次数:358
java 四种内部类的学习
内部类 定义在外部类的内部, 编译后是独立存在的类 可以访问外部类的私有成员,且不破坏封装成员内部类 用"外部类类名.this"访问外部类的当前对象 创建对象:先创建外部类对象,再通过"外部类对象.new 内部类类名"创建内部类对象静态内部类 只能访问外部类的静态成...
分类:编程语言   时间:2014-05-01 12:54:49    阅读次数:407
查看perl的模块版本
查询版本: perl -M模块名 -e "print 模块名->VERSION"一个例子:查看LWP模块版本(Windows操作系统下)
分类:其他好文   时间:2014-05-01 12:44:30    阅读次数:381
NPOI技术,
using(FileStream stream=new FileStream("C:\Users\XXXXXX\Desktop\1.xls",FileMode.Open)) { HSSFWorkbook workbook=new HSSF...
分类:其他好文   时间:2014-05-01 12:43:07    阅读次数:366
Use UMDH to identify memory leak problem
We sometimes got memory leak problem, and we need to find the leaked memory, Here is a useful tool from MS, UMDH, it is included in WinDBG install package. Here is a introduction on how to UMDH to identify memory leak problems...
分类:其他好文   时间:2014-04-29 13:38:21    阅读次数:374
状态压缩dp入门 第一题 POJ 3254 Corn Fields
Corn Fields Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 6460   Accepted: 3436 Description Farmer John has purchased a lush new rectangular pasture compos...
分类:其他好文   时间:2014-04-29 13:37:20    阅读次数:339
HDU 3080 The plan of city rebuild(prim和kruskal)
The plan of city rebuild Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 616    Accepted Submission(s): 215 Problem Description New...
分类:其他好文   时间:2014-04-29 13:22:21    阅读次数:438
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!