|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
不过你如果学.net的话,你就不要选os了,这课比较底层的。你可以旁听数据库加上软件构件和中间件。(webservices和面向服务的课也应该听一听)xml上面是经由过程读取xml文件中的内容并显现在textbox的例子:
usingSystem;
usingSystem.Data;
usingSystem.Configuration;
usingSystem.Web;
usingSystem.Web.Security;
usingSystem.Web.UI;
usingSystem.Web.UI.WebControls;
usingSystem.Web.UI.WebControls.WebParts;
usingSystem.Web.UI.HtmlControls;
usingSystem.Xml;
usingSystem.Xml.XPath;
publicpartialclass_Default:System.Web.UI.Page
{
publicstring[]x=newstring[4];
protectedvoidPage_Load(objectsender,EventArgse)
{
XmlDocumentxmlDoc=newXmlDocument();
xmlDoc.Load(Server.MapPath("table.xml"));//你的xml文件
XmlNodeListxmlList=xmlDoc.SelectSingleNode("MapSheet").ChildNodes;
foreach(XmlNodexmlNoinxmlList)
{
//XmlNodeListxe=(XmlNodeList)xmlNo;
XmlElementxe=(XmlElement)xmlNo;
{
if(xe.Name=="TableName")
{
y[0]=xe.InnerText;
}
if(xe.Name=="DataSource")
{
y[1]=xe.InnerText;
}
if(xe.Name=="UserName")
{
y[2]=xe.InnerText;
}
if(xe.Name=="Password")
{
y[3]=xe.InnerText;
}
}
}
TextBox1.Text=y[0];
TextBox2.Text=y[1];
TextBox3.Text=y[2];
TextBox4.Text=y[3];
}
}该程序已过测试,没有成绩。
java的设计机制:首先产生一个中间码,第二部编译为本地(机器)码。这个机制有很大的缺点。 |
|