解決C#中txt文檔匯入資料庫時,中文顯示亂碼的問題

來源:互聯網
上載者:User

與前篇文章不同之處用紅筆標記

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.IO;
using System.Data.SqlClient;

namespace txt匯入至資料庫
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        public static System.Text.Encoding GetFileEncoding(string fileFullName)
        {
            FileStream fs = new FileStream(fileFullName, FileMode.Open, FileAccess.Read);
            System.Text.Encoding r = GetType(fs);
            fs.Close();
            return r;
        }

        public static System.Text.Encoding GetType(FileStream fs)
        {
            /*
             * byte[] Unicode=new byte[]{0xFF,0xFE}; 
             * byte[] UnicodeBIG=new byte[]{0xFE,0xFF}; 
             * byte[] UTF8=new byte[]{0xEF,0xBB,0xBF};
             */

            BinaryReader r = new BinaryReader(fs, System.Text.Encoding.Default);
            byte[] ss = r.ReadBytes(3);
            r.Close();
            //編碼類別型 Coding=編碼類別型.ASCII;  
            if (ss[0] >= 0xEF)
            {
                if (ss[0] == 0xEF && ss[1] == 0xBB && ss[2] == 0xBF)
                {
                    return System.Text.Encoding.UTF8;
                }
                else if (ss[0] == 0xFE && ss[1] == 0xFF)
                {
                    return System.Text.Encoding.BigEndianUnicode;
                }
                else if (ss[0] == 0xFF && ss[1] == 0xFE)
                {
                    return System.Text.Encoding.Unicode;
                }
                else
                {
                    return System.Text.Encoding.Default;
                }
            }
            else
            {
                return System.Text.Encoding.Default;
            }
        }
        private void button1_Click(object sender, EventArgs e)
        {
            if (ofdfile.ShowDialog() == DialogResult.OK)
            {
               using (FileStream fileStream=File.OpenRead(ofdfile.FileName))
               {
                  Encoding readEncoding = GetFileEncoding(ofdfile.FileName);

                 
                using (StreamReader streamreader = new StreamReader(fileStream,readEncoding))
                {
                   
                    using (SqlConnection conn = new SqlConnection("server=.;database=test;user id=sa;password=123456"))
                    {
                        conn.Open();
                        string lines = null;
                        using (SqlCommand cmd = conn.CreateCommand())
                        {
                            cmd.CommandText = "insert into T_persons(name,age)values(@name,@age)";
                          
                            while ((lines=streamreader.ReadLine()) != null)
                            {
                          
                                string[] strs = lines.Split('|');
                                string name = strs[0].ToString();
                                int age = Convert.ToInt32(strs[1]);
                                cmd.Parameters.Clear();
                                cmd.Parameters.Add(new SqlParameter("name",name));
                                cmd.Parameters.Add(new SqlParameter("age",age));
                                cmd.ExecuteNonQuery();
                               
                            }
                        }

                    }
                }
                }
               MessageBox.Show("資料匯入成功");

            }
        }
    }
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.