摘要:
u Ant 的下载 Ant 是一个开源、免费的软件,可以从以下地址下载最新版本: http://ant.apache.org/ u Ant 的安装和配置 Ant 的安装程序是一个压缩文件,例如最新版本的 Ant 1.6.5 安装程序文件名称为—— apache-ant-1.6.5-bin.zip 。 1. ... 阅读全文
摘要:
我查阅SDK文档,发现有两种方法 第一种方法: XmlFormView.XmlForm.ViewInfos.SwitchView("FirstView"); 第二种方法: XmlFormView.XmlForm.ViewInfos.Initial = XmlFormVie... 阅读全文
摘要:
网上的帖子真是误人子弟,搜出来的全是垃圾,现总结一下正确的步骤: 1、下载sqljdbc_1.2.2828.100_chs 在http://www.microsoft.com/downloads/details.aspx?familyid=C47053EB-3B64-4794-950D-81E1EC91C1BA&displaylang=zh-cn 2、将sqljdbc.jar放入D:\Tomcat... 阅读全文
摘要:
http://www.cnblogs.com/WizardWu/archive/2008/10/27/1320055.html 阅读全文
摘要:
提高 LINQ to XML 中的性能的一种方法是预原子化 XName 对象。预原子化是指在通过使用 XElement 和 XAttribute 类的构造函数创建 XML 树之前,先将字符串分配给 XName 对象。然后传递初始化的 XName 对象,而不是将字符串传递给构造函数(此过程将使用从字符串到 XName 的隐式转换)。 XName Root = "Root"; XName Data =... 阅读全文
摘要:
string xslMarkup = @" "; XDocument xmlTree = new XDocument( ... 阅读全文
摘要:
XElement root = XElement.Load("Irregular.xml"); IEnumerable configParameters = root.Elements("Customer").Elements("Config"). Elements("ConfigParameter"); foreach (XElement cp in configParamet... 阅读全文
摘要:
//检索元素集合 XElement po = XElement.Load("c:/test.xml"); IEnumerable childElements = //from el in po.Descendants("Book") from el in po.Descendants("... 阅读全文
摘要:
IEnumerable grandChildData = from el in StreamRootChildDoc(new StringReader(markup)) where (int)el.Attribute("Key") > 1 select (string)el.Element("Grand... 阅读全文
摘要:
XDocument d = new XDocument( new XComment("This is a comment."), new XProcessingInstruction("xml-stylesheet", "href='mystyle.css' title='Compact' type='text/css'"), new... 阅读全文