-3

こんにちは、特定のノードを 1 つの XML からより大きな .xml に置き換える必要がありますweb.config

<?xml version="1.0" encoding="Windows-1252" standalone="yes"?>
  <VFPData>
    <site>
      <sitename></sitename>
      <appname></appname>
      <cookie>.cookiename</cookie>
      <host></host>
      <port>1234</port>
      <database></database>
      <userid></userid>
      <password></password>
    </site>
  </VFPData>

そのため、 を にコピーする必要が<port>ありweb.configます。

4

1 に答える 1

0

両方のファイルをテキスト ファイルとして扱いたい場合は、StreamWriter と StreamReader を使用できます。

using System;
using System.IO;

class Test 
{
    public static void Main() 
    {
        string path = @"c:\temp\MyTest.txt";
        // This text is added only once to the file. 
        if (!File.Exists(path)) 
        {
            // Create a file to write to. 
            using (StreamWriter sw = File.CreateText(path)) 
            {
                sw.WriteLine("Hello");
                sw.WriteLine("And");
                sw.WriteLine("Welcome");
            }   
        }

        // This text is always added, making the file longer over time 
        // if it is not deleted. 
        using (StreamWriter sw = File.AppendText(path)) 
        {
            sw.WriteLine("This");
            sw.WriteLine("is Extra");
            sw.WriteLine("Text");
        }   

        // Open the file to read from. 
        using (StreamReader sr = File.OpenText(path)) 
        {
            string s = "";
            while ((s = sr.ReadLine()) != null) 
            {
                Console.WriteLine(s);
            }
        }
    }
}

ソース

そうです、これはストリームをカバーし、テキストに最適です。ただし、XML を編集しているので、さらに一歩進めることができます。どちらも XML であるため、XDocumentオブジェクトを使用できます (これにより Linq が可能になります)。これにより、元のストリームを読み取り、コピーするノードを変数として保存し、web.config ファイルを開いてノードを追加できます。

于 2013-01-04T09:33:58.160 に答える