方法一、利用微软的excel操作类引用:usingExcel=Microsoft.Office.Interop.Excel;代码如下:#region导出数据表:Excle(微软的excel操作类)
///<summary>
///导出数据表:Excle
///</summary>
///<paramname="myDGV"></param>
publicvoid_ToExcel(DataG..
在操作一个文件前想要获取当前文件的状态,避免正在打开的文件又再次的打开,代码参考网络以前已经写好,分享于己作为记录,也可作为他人的参考。 #region Get file status [DllImport("kernel32.dll")] private static exter...
在数据库中中间表往往可能没有主键,而Hibernate检索的时候是根据主键检索的,这样就无法直接检索中间表中的数据。对于这种情况Hibernate会自动生成一个主键辅助类来辅助检索,下面看具体使用方法。
数据库存在数据表region表存有两个字段,一个city字段,一个code字段,city字段存放城市名,code字段存放城市代码。没有指定主键。
这是使用Hibernate的反向工程自动创建P...
分类:
Web程序 时间:
2015-01-22 11:17:53
阅读次数:
214
Surrounded RegionsGiven a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in that...
分类:
其他好文 时间:
2015-01-21 22:17:26
阅读次数:
180
using System;using System.Collections.Generic;using System.Text;public class StringCompute{ #region 私有变量 /// /// 字符串1 /// private cha...
分类:
其他好文 时间:
2015-01-21 19:49:26
阅读次数:
484
产生死锁
在操作系统中,我们可能接触过两个进程争抢资源,互不相让,然后产生了死锁,这时候,我们可以用银行家算法来分配资源。下面,我们先模拟产生死锁:
#region 试图产生死锁的代码
// static void T1(Program p)
//{
// //主线程占有了mainRes...
分类:
其他好文 时间:
2015-01-20 20:30:48
阅读次数:
143
Oil Deposits
The GeoSurvComp geologic survey company is responsible for detecting underground oil deposits. GeoSurvComp works with one large rectangular region of land at a time, and cre...
分类:
其他好文 时间:
2015-01-20 17:58:24
阅读次数:
135
HBase主要处理两种文件:预写日志(Write-Ahead Log,WAL),实际的数据文件。 一个基本的流程是客户端首先联系ZooKeeper子集群查找行健数据所在的region服务器名。(通过ZooKeeper获取含有-ROOT-的region服务器名【主机名】来完成,通过含有-ROOT...
分类:
其他好文 时间:
2015-01-17 12:36:51
阅读次数:
242
#region 得到一周的周一和周日的日期 /// /// 计算本周的周一日期 /// /// public static DateTime GetMondayDate() { r...
代码如下:public class KeyBoardHelper { #region 键盘控制 /// /// 显示键盘 /// public static void ShowInputPanel() { ...
分类:
Windows程序 时间:
2015-01-16 16:32:54
阅读次数:
1157