第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何將 .tsv 內(nèi)容轉(zhuǎn)換為 xml

如何將 .tsv 內(nèi)容轉(zhuǎn)換為 xml

C#
qq_花開花謝_0 2022-12-31 11:21:06
我有一個(gè)tsv如下所示的文件Time    Object  pmPdDrb pmPdcDlSrb00:45   EUtranCellFDD=GNL02294_7A_1 2588007 162600:45   EUtranCellFDD=GNL02294_7B_1 18550   3200:45   EUtranCellFDD=GNL02294_7C_1 26199   3800:45   EUtranCellFDD=GNL02294_9A_1 3857243 751是否可以像下面這樣將其轉(zhuǎn)換為 XML?<xmlnode>  <Time>00:45</Time>  <Object>EUtranCellFDD=GNL02294_7A_1</Object>  <pmPdDrb>2588007</pmPdDrb>  <pmPdcDlSrb>1626</pmPdcDlSrb></xmlnode>我試過下面的代碼:var reader = File.ReadAllLines(logFile);var xml1 = new XElement("TopElement",reader.Select(line => new XElement("Item",    line.Split('\t').Select((column, index) =>         new XElement("Column" + index,column)))    ));
查看完整描述

1 回答

?
偶然的你

TA貢獻(xiàn)1841條經(jīng)驗(yàn) 獲得超3個(gè)贊

嘗試以下:


using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Xml;

using System.Xml.Linq;

using System.IO;


namespace ConsoleApplication110

{

    class Program

    {

        const string INPUT_FILENAME = @"c:\temp\test.txt";

        const string OUTPUT_FILENAME = @"c:\temp\test.xml";

        static void Main(string[] args)

        {

            string header = "<xmlnodes></xmlnodes>";


            XDocument doc = XDocument.Parse(header);

            XElement xmlnodes = doc.Root;


            StreamReader reader = new StreamReader(INPUT_FILENAME);


            string line = "";

            string[] columnNames = null;

            int lineCount = 0;

            while((line = reader.ReadLine()) != null)

            {

                line = line.Trim();

                if (line.Length > 0)

                {

                    string[] splitArray = line.Split(new char[] { '\t', ' '}, StringSplitOptions.RemoveEmptyEntries);

                    if (++lineCount == 1)

                    {

                        columnNames = splitArray;

                    }

                    else

                    {

                        XElement newNode = new XElement("xmlnode");

                        xmlnodes.Add(newNode);

                        for(int i = 0; i < splitArray.Length; i++)

                        {

                            XElement xColumn = new XElement(columnNames[i], splitArray[i]);

                            newNode.Add(xColumn);

                        }


                    }

                }

            }


            doc.Save(OUTPUT_FILENAME);


        }


    }



}



查看完整回答
反對 回復(fù) 2022-12-31
  • 1 回答
  • 0 關(guān)注
  • 132 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號