데이터베이스 컨텐트를 Excel로 내보내기
19564 단어 Excel
1 using System;
2
3 using System.Collections.Generic;
4
5 using System.Linq;
6
7 using System.Text;
8
9 using System.Data.SqlClient;
10
11 using NPOI.SS.UserModel;
12
13 using NPOI.HSSF.UserModel;
14
15 using System.IO;
16
17
18
19 namespace Excel
20
21 {
22
23 class Program
24
25 {
26
27 static void Main(string[] args)
28
29 {
30
31
32
33 bool b = false;
34
35 using (SqlDataReader reader = SqlHelper.ExecuteReader("select * from T_Customers"))
36
37 {
38
39
40
41 if (reader.HasRows)
42
43 {
44
45 b = true;
46
47 //
48
49 using (Workbook book = new HSSFWorkbook())
50
51 {
52
53 using (Sheet sheet = book.CreateSheet("CustomerInfo.xls"))
54
55 {
56
57 // ,
58
59 Row rowHeader = sheet.CreateRow(0);
60
61 // , ,
62
63 reader.FieldCount
64
65 for (int c = 0; c < reader.FieldCount; c++)
66
67 {
68
69 rowHeader.CreateCell(c).SetCellValue(reader.GetName(c));
70
71 }
72
73
74
75 int indexof = 1;
76
77 while (reader.Read())
78
79 {
80
81 Row row = sheet.CreateRow(indexof);
82
83 for (int i = 0; i < reader.FieldCount; i++)
84
85 {
86
87 Cell cell = row.CreateCell(i);
88
89 switch (reader.GetDataTypeName(i))
90
91 {
92
93 case "int":
94
95 if (reader.IsDBNull(i))
96
97 {
98
99 cell.SetCellType(CellType.BLANK);
100
101 }
102
103 else
104
105 {
106
107 cell.SetCellValue(reader.GetInt32(i));
108
109 }
110
111 break;
112
113 case "varchar":
114
115 case "char":
116
117 case "nchar":
118
119 case "nvarchar":
120
121 if (reader.IsDBNull(i))
122
123 {
124
125 cell.SetCellType(CellType.BLANK);
126
127 }
128
129 else
130
131 {
132
133 cell.SetCellValue(reader.GetString(i));
134
135 }
136
137 break;
138
139 case "datetime":
140
141 if (reader.IsDBNull(i))
142
143 {
144
145 cell.SetCellType(CellType.BLANK);
146
147 }
148
149 else
150
151 {
152
153 cell.SetCellValue(reader.GetDateTime(i).ToString());
154
155 }
156
157 break;
158
159 default: break;
160
161
162
163 }
164
165
166
167 }
168
169 indexof++;
170
171 }
172
173 using (FileStream fsWrite = File.OpenWrite("CustomerInfo.xls"))
174
175 {
176
177 book.Write(fsWrite);
178
179 Console.WriteLine(" ");
180
181 }
182
183 }
184
185 if (!b)
186
187 {
188
189 Console.WriteLine(" ");
190
191 }
192
193 }
194
195 }
196
197 }
198
199 }
200
201 }
202
203 }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Excel Grep toolExcel Grep tool ■히나가타 ■ 시트 구성 ExcelGrep.cls...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.