gpt4 book ai didi

c# - 如何访问名称中包含 ':' 字符的 xml 属性?

转载 作者:太空宇宙 更新时间:2023-11-03 20:04:22 25 4
gpt4 key购买 nike

.我是 c# 的新手。我正在尝试解析“AndroidManifest.xml”文件。解析时我需要获取某些元素的某些属性的值。以下是我的“AndroidManifest.xml”文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="2" android:versionName="1.1.0" package="com.sbi.SBIFreedomPlus"
xmlns:android="http://schemas.android.com/apk/res/android">
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:label="@string/app_name" android:name=".SBIFreedom" android:launchMode="singleTask" android:screenOrientation="sensor" android:configChanges="locale|keyboardHidden|orientation|screenSize" android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.konylabs.android.KonyMapsActivity" android:launchMode="singleInstance" />
<activity android:name="com.konylabs.android.KonyMapsV2Activity" />
</application>
<supports-screens android:anyDensity="true" android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>

这是我解析这个 xml 的代码:

void read()
{
try
{
string fileName = @"tempassets//AndroidManifest.xml";
String applicationPackage = "";
XDocument doc = XDocument.Load(fileName);
applicationPackage = doc.Root.Attribute("package").Value;


foreach (XElement el in doc.Root.Elements())
{
if (el.Name == "application")
{
foreach (XElement child in el.Elements())
{
if (child.HasElements)
{
MessageBox.Show("true");
MessageBox.Show("name:" + child.Name + "Label" + child.Attribute("android:label").Value);
}
}
}

}

}
catch (Exception objException)
{
MessageBox.Show("exception while parsing AndroidManifest.xml :"+objException);
File.WriteAllText(@"tempassets//Config//error.txt", ""+objException, Encoding.Unicode);
}
}

但这给了我运行时异常:

System.Xml.XmlException: The ':' character, hexadecimal value 0x3A, cannot be included in a name.

所以谁能告诉我应该如何解决此异常以获取此类属性的值。 . .提前谢谢。 .

最佳答案

: 之前的部分称为命名空间前缀。使用 System.Xml.Linq 时,您需要像这样引用它:

child.Attribute("{http://schemas.android.com/apk/res/android}label").Value

您需要使用的 URI 是使用 xmlns: 前缀作为

在 XML 文档中定义的 URI
xmlns:android="http://schemas.android.com/apk/res/android"

另一种方法是使用 XNamespace类(请注意,在这种情况下,您没有在 URI 周围使用 {}):

XNamespace android = "http://schemas.android.com/apk/res/android";
var attribute = child.Attribute(android + "label").Value;

关于c# - 如何访问名称中包含 ':' 字符的 xml 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24734710/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com