1:float儲存2位小數:
f1.tostring("f2")
2:datatable列求和:
dt.compute("sum([企業數量])", "true")
同時:如果欄位為中文,取值用[中文字段] 方式。
3:npoi 匯出excel(需要手動匯入npoi檔案)
單sheet:
1view code//單sheet頁匯出
2public
static
stream renderdatatabletoexcel(datatable sourcetable)
318 rowindex++;19}
2021
workbook.write(ms);
22ms.flush();
23 ms.position = 0
;24 sheet = null
;25 headerrow = null
;26 workbook = null;27
return
ms;28 }
多sheet:
1view codeprivate
stream renderdatatabletoexcel(datatable dtsources)215
16//
填充內容
17for (int i = 0; i < dtsources[k].rows.count; i++)
1824}25
}2627workbook.write(ms);
28ms.flush();
29 ms.position = 0;30
return
ms;31 }
4:匯出excel
1 response.addheader("view codecontent-disposition
", string.format("
attachment;filename=
"+filename+"
.xls
"));
2response.binarywrite(ms.toarray());
3ms.close();
4 ms.dispose();
response.addheader("content-disposition", "attachment; filename="+system.web.httputility.urlencode("中文",system.text.encoding.utf8)+".xls");
5:oracle中sql語句 輸出保留2位小數的操作:
1 case nvl(sum(es_elmtotal),0) when 0 then 'view code0.00%
'else round(nvl(sum(es_extelmtotalnum),0)*100/nvl(sum(es_elmtotal),0),2)||'
%' end as 總體擴充套件率
階段總結 2011 總結
今天晚上 09級的軟體學院的學生就要進行畢業聚餐,學生給我打 讓我參加。接到學生的 我很矛盾,這是我帶的第一屆學生,學生的學習時間只有兩年,而我也參加工作兩年了。學生畢業了,我也到了該總結的時候了。我在一所普通的高校工作,這所高校也是我的母校,研究生畢業後本來已經簽到西安中興了,可是耐不住家人的勸說...
階段總結 13 9 24
板子上的linux沒有v4l模組?目前只能想到這個原因了。花了一天的時間編譯核心zimage 以前沒試過 清清楚楚看到選v4l了。一會再裝一遍linux。今天編譯核心出現這個問題arm linux gcc command not found google之後發現時是環境變數沒設定對。網上方法好多。e...
jquery easyui 階段總結
近期使用jquery easyui比較多,現在總結一下幾種常用的方法 獲取當前行索引 var index productattrgrids datagrid getrowindex row 根據已知索引獲取行 var row productattrgrids datagrid getrows ind...