通过数据表和流编写器从SQL表保存到文本文件

时间:2013-10-16 11:20:19

标签: c# sql

那是我的代码

static void Write(DataTable dt, string outputFilePath)
        {
        int[] maxLengths = new int[dt.Columns.Count];

        for (int i = 0; i < dt.Columns.Count; i++)
        {
            maxLengths[i] = dt.Columns[i].ColumnName.Length;

            foreach (DataRow row in dt.Rows)
            {
                if (!row.IsNull(i))
                {
                    int length = row[i].ToString().Length;

                    if (length > maxLengths[i])
                    {
                        maxLengths[i] = length;
                    }
                }
            }
        }

        using (StreamWriter sw = new StreamWriter(outputFilePath, false))
        {   
            sw.Write(new byte[]{0xff,0xfe});
            foreach (DataRow row in dt.Rows)
            {
                for (int i = 0; i < dt.Columns.Count; i++)
                {
                    if (!row.IsNull(i))
                    {
                        sw.Write(row[i].ToString() + "  ");
                    }
                }

                sw.WriteLine();
            }
        }
    }

我想在开头将2个字节放到文本文件中。

sw.Write(new byte[]{0xff,0xfe}); 

问题是当我用十六进制打开时,我看不到那两个字节。 但我在文本文件本身看到这些http://img713.imageshack.us/img713/1143/zaqj.png:\

任何解决方案请帮忙。 它假设看起来像这个http://img266.imageshack.us/img266/1105/y40i.png

1 个答案:

答案 0 :(得分:0)

尝试这样:

sw.Write(new char[]{(char)0xff , (char)0xfe});

在params中没有执行Write with byte数组:http://msdn.microsoft.com/en-us/library/system.io.streamwriter.write.aspx

所以它使用Object参数并调用他的ToString()方法