0

这是我的代码:

using (StreamReader reader = new StreamReader("test.xml"))
{          
    int prev = ' ';
    List<string> info = new List<string>();
    StringBuilder temp = new StringBuilder();

    for (int c; (c = reader.Read()) != -1; )
    {
        if (prev == '>' && c != '<')
        {
            while (c != '<')
            {
                if (c != ' ' && c != '\n' && c != '\r' && c != '\t') temp.Append((char)c);
                c = reader.Read();
            }

            if (temp.Length > 0)
            {
                info.Add(temp.ToString());
                Console.WriteLine(temp.ToString());
                temp.Clear();
            }
        }
        prev = c;
    }

    foreach (string item in info) Console.WriteLine(item);
}

我正在尝试从 XML 文件(没有在 .NET 中实现的方法)中读取有意义的内容(标签之间的信息)。该程序似乎读取了数据块并将它们成功放入列表中,但是当它到达文件末尾时,它只是冻结而不执行 for 语句之后的剩余代码。我必须说它不再循环了——我试过了,它只是冻结了。

XML 文件:

<?xml version="1.0"><student><name>Pesho</name>
<age>21</age><interests count="3"><interest>
Games</instrest><interest>C#</instrest><interest>
Java</instrest></interests></student>
4

1 回答 1

2

看起来最里面的循环,while循环,可以永远从流中读取,因为它读取while (c != '<'), 和(-1) != '<'.

请注意,当您在( ) 和( )!=之间使用运算符时,后者会自动转换为,因此它实际上是:int-1char'<'int

while (c != 60)
于 2013-01-27T14:17:28.893 回答