I have written the code to read the csv file(which include 4 rows)
and the application is running sucessfully, while writting to the file it writes 2nd and 4th row to the file
I am not getting why its happening.
Can anyone help me for the same.
following is the code
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Xml;
using System.Configuration;
using System.IO;
namespace Test1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Uploadbutton_Click(object sender, EventArgs e)
{
openFileDialog1.ShowDialog();
filenametextBox.Text = openFileDialog1.FileName;
}
private void save_to_DBbutton_Click(object sender, EventArgs e)
{
if (openFileDialog1.FileName == "")
{
MessageBox.Show("File Not Selected");
}
StreamReader sr = new StreamReader(openFileDialog1.FileName,Encoding.GetEncoding(1250));
StreamWriter SW;
SW = File.CreateText("D:\\CSV\\csv.txt");
string strline = "";
string str1 = "";
string[] _values = null;
while ((strline = sr.ReadLine()) != null)
{
strline = sr.ReadLine();
_values = strline.Split(';');
foreach (string str in _values)
{
str1 = str + ",";
}
str1 = str1.Trim(',');
SW.WriteLine(str1);
} sr.Close();
SW.Close();
MessageBox.Show("Sucessfully Retrieved and file has been created");
this.Close();
}
}