| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 679 人关注过本帖
标题:while(xr.Read())字符无效
只看楼主 加入收藏
mahayu
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:122
专家分:160
注 册:2007-8-3
收藏
 问题点数:0 回复次数:1 
while(xr.Read())字符无效

using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;

namespace _122
{
public class test
{
public void ReadFromFile()
{
string sf = "..\\..\\test.xml";
XmlTextReader xr = new XmlTextReader(sf);
xr.WhitespaceHandling = WhitespaceHandling.None;

while(xr.Read())
{
for(int i = 0;i < xr.Depth;i++)
Console.Write("\t");
switch(xr.NodeType)
{
case XmlNodeType.Element:
Console.WriteLine("<{0}>",xr.Name);
break;
case XmlNodeType.Text:
Console.WriteLine("<{0}>",xr.Value);
break;
}
}

if(xr != null)
xr.Close();
}

static void Main(string[] args)
{
test obj = new test();
obj.ReadFromFile();

}
}
}

这段代码运行是提示"while(xr.Read())"这行无效

搜索更多相关主题的帖子: Read 字符 
2007-10-14 10:56
枫飘天涯
Rank: 2
来 自:北京
等 级:新手上路
威 望:4
帖 子:251
专家分:0
注 册:2006-10-13
收藏
得分:0 

while里面要放boolean类型值 楼主确定你的xr.read()返回的是boolean类型值吗


*、還⒋聼媽媽德話吧 晩點再戀愛吧
2007-10-14 11:44
快速回复:while(xr.Read())字符无效
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.021723 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved