定义包含固定长度数据的“方式”c#

时间:2013-10-03 10:12:38

标签: c# fixed-length-record

enter image description here

我的数据库中有元素描述列的数据。 如何在尊重“开始位置”列的同时将它们写入文本文件?

我尝试使用具有特定长度的数组,但无法弄清楚如何获取文本文件的值。

帮助?

1 个答案:

答案 0 :(得分:0)

以下伪解决了我的案例

感谢Saritha.S.R。

string a=string.Empty;
    StreamWriter yourStream = null;
    protected void Page_Load(object sender, EventArgs e)
    {
            yourStream = File.CreateText("D:\\test1.txt"); // creating file
            a = String.Format("|{0,1}|{1,2}|{2,7}|......", "A", "B", "",......); //formatting text based on poeition
            yourStream.Write(a+"\r\n");                        
            yourStream.Close();
        }