string sheetname = "chc 例項";
worksheet sheet = xls.workbook.worksheets.addnamed(sheetname);//填加名為"chc 例項"的sheet頁
cells cells = sheet.cells;//cells例項是sheet頁中單元格(cell)集合
//單元格1-base
cell cell = cells.add(1, 2, "抗");//設定第一行,第二例單元格的值
cell.horizontalalignment = horizontalalignments.centered;//設定文字居中
cell.font.fontname = "方正舒體";//設定字型
cell.font.height = 20 * 20;//設定字大小(字型大小是以 1/20 point 為單位的)
cell.useborder = true;//使用邊框
cell.bottomlinestyle = 2;//設定邊框底線為粗線
cell.bottomlinecolor = colors.darkred;//設定顏色為暗紅
//cell的格式還可以定義在乙個xf物件中
xf cellxf = xls.newxf();//為xls生成乙個xf例項(xf是cell格式物件)
cellxf.horizontalalignment = horizontalalignments.centered;//設定文字居中
cellxf.font.fontname = "方正舒體";//設定字型
cellxf.font.height = 20 * 20;//設定字大小(字型大小是以 1/20 point 為單位的)
cellxf.useborder = true;//使用邊框
cellxf.bottomlinestyle = 2;//設定邊框底線為粗線
cellxf.bottomlinecolor = colors.darkred;//設定顏色為暗紅
cell = cells.addvaluecellxf(2, 2,"震", cellxf);//以設定好的格式填加cell
cellxf.font.fontname = "仿宋_gb2312";
cell = cells.addvaluecellxf(3, 2, "救", cellxf);//格式可以多次使用
columninfo colinfo = new columninfo(xls, sheet);//生成列格式物件
//設定colinfo格式的起作用的列為第2列到第5列(列格式為0-base)
colinfo.columnindexstart = 1;//起始列為第二列
colinfo.columnindexend = 5;//終止列為第六列
colinfo.width = 15 * 256;//列的寬度計量單位為 1/256 字元寬
sheet.addcolumninfo(colinfo);//把格式附加到sheet頁上(注:addcolumninfo方法有點小問題,不給把colinfo物件多次附給sheet頁)
colinfo.columnindexend = 6;//可以更改列物件的值
columninfo colinfo2 = new columninfo(xls, sheet);//通過新生成乙個列格式物件,才到能設定其它列寬度
colinfo2.columnindexstart = 7;
colinfo2.columnindexend = 8;
colinfo2.width = 1 * 256;
sheet.addcolumninfo(colinfo2);
mergearea meaa = new mergearea(1,2,3,4);//乙個合併單元格例項(合併第一行、第三例 到 第二行、第四例)
sheet.addmergearea(meaa);//填加合併單元格
cellxf.verticalalignment= verticalalignments.centered;
cellxf.font.height = 48 * 20;
cellxf.font.bold = true;
cellxf.pattern = 3;//設定單元格填充風格。如果設定為0,則是純色填充
cellxf.patternbackgroundcolor = colors.darkred;//填充的底色
cellxf.patterncolor = colors.darkgreen;//設定填充線條的顏色
cell = cells.add(1, 3, "災",cellxf);
檔案處理的一些資料收集
獲取檔名 private sub button1 click byval sender as system.object,byval e as system.eventargs handles button1.click if not aa.postedfile is nothing then di...
一些有關資料的小技巧
1.隨機抽樣 import pandas as pd dataframe.sample n none,frac none,replace false,weights none,random state none,axis none n 抽取的行數。frac 抽取的比列。replace抽樣後的資料是否...
JSON DATE 轉換標準的一些資料(收集)
json的date標準還沒出來,所以有各種花樣的date,而我們經常在js上使用自然問題多多了。關於標準可以看 如果您使用的微軟的json序列化庫那麼date會是這個樣子 date 1224043200000 下面是轉換成js obj的方法var date eval jsondate.replace...