Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- setInterval clear
- mosquitto
- setInterval 정지
- mosquitto.conf
- 공인IP
- allow_anonymouse
- DatePicker
- setInterval 외부 정지
- timepicker
- pm2 상태 확인
- pm2 시작
- 1883
- pm2 확인
- Replication
- 데이터테이블 데이터 넣기
- invalid data
- mySQL_Replication
- AntDesign
- DataGridView 직접 입력
- 서버동기화
- listener 1883
- c# datagridview 데이터 넣기
- pm2
- transfer
- datagridview 직접입력
- html #select #option #multiple
- setInterval 중지
- pm2 설치
- 맥 어드레스
- map이 undefined가 뜰 때
Archives
- Today
- Total
개발 노트
csv저장기능 본문
먼저 파일저장 버튼을 만든다
ExportToCSV()라는 메소드를 만든다
private void ExportToCSV()
{
SaveFileDialog saveFileDialog = GetCsvSave();
if (saveFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
Save_Csv(saveFileDialog.FileName, dataGridView1, true); // dataGridView에 데이터를 세팅하는 메서드를 호출
}
Save_CSV 라는 함수를 만든다.
bool headerText = true;
private void Save_Csv(string fileName, DataGridView dataGridView1, bool v)
{
string delimiter = ","; // 구분자
FileStream fs = new FileStream(fileName, System.IO.FileMode.Create, System.IO.FileAccess.Write);
StreamWriter csvExport = new StreamWriter(fs, System.Text.Encoding.UTF8); //UTF8로 엔코딩
if (dataGridView1.Rows.Count == 0) return;
// header가 true면 헤더정보 출력
if (headerText)
{
for (int i = 1; i < dataGridView1.Columns.Count-4; i++)
{
csvExport.Write(dataGridView1.Columns[i].HeaderText);
if (i != dataGridView1.Columns.Count - 1)
{
csvExport.Write(delimiter);
}
}
}
csvExport.Write(csvExport.NewLine); // add new line
// 데이터 출력
foreach (DataGridViewRow row in dataGridView1.Rows)
{
if (!row.IsNewRow)
{
for (int i = 1; i < dataGridView1.Columns.Count-4; i++)
{
csvExport.Write(row.Cells[i].Value);
if (i != dataGridView1.Columns.Count - 1)
{
csvExport.Write(delimiter);
}
}
csvExport.Write(csvExport.NewLine); // write new line
}
}
csvExport.Flush();
csvExport.Close();
fs.Close();
MessageBox.Show("CSV 파일 저장 완료!");
}
GetCsvSave()라는 메소드를 만든다
private SaveFileDialog GetCsvSave()
{
//Getting the location and file name of the excel to save from user.
SaveFileDialog saveDialog = new SaveFileDialog();
saveDialog.CheckPathExists = true;
saveDialog.AddExtension = true;
saveDialog.ValidateNames = true;
string path = System.Reflection.Assembly.GetExecutingAssembly().Location;
string filepath = Path.GetDirectoryName(path);
saveDialog.InitialDirectory = filepath;// Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
saveDialog.DefaultExt = ".csv";
saveDialog.Filter = "csv (*.csv) | *.csv";
saveDialog.FileName = "export".ToString();
return saveDialog;
}
'프로그래밍 > C#' 카테고리의 다른 글
C# 일령 다른테이블값 가져오기 (0) | 2022.02.16 |
---|---|
C# join 테이블 칼럼 쓰기 (0) | 2022.02.16 |
수정 삭제 조회 활성화 (0) | 2022.02.15 |
sql join query (0) | 2022.02.15 |
특정셀값 색깔연습 (0) | 2022.02.14 |