gpt4 book ai didi

java - XmlPullParserException 不受支持的功能

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

我正在尝试从我的 android 项目中的 jar 文件中读取可绘制的 xml 文件。

private Drawable readDrawableFromJar(String p_strFilePath) {
InputStream stream = getClass().getClassLoader().getResourceAsStream(p_strFilePath);
XmlPullParser parser = null;
try {
XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
factory.setValidating(true);
factory.setNamespaceAware(true);
parser = factory.newPullParser();
parser.setInput(stream, "UTF-8");
} catch (XmlPullParserException e) {
Log.e(LOG_TAG, "there is something for " + p_strFilePath + " " + e);
}


Drawable drawable = null;
try {
if (parser != null) {
drawable = VectorDrawableCompat.createFromXml(getContext().getResources(), parser);

return drawable ;
} else {
Log.e(LOG_TAG, "parser is null for " + p_strFilePath);
}

} catch (XmlPullParserException e) {
Log.e(LOG_TAG, "there is something for " + p_strFilePath + " " + e);
} catch (IOException e) {
Log.e(LOG_TAG, "there is something for " + p_strFilePath + " " + e);
}
return null;
}

这个方法可以找到文件,读取里面的文字。但是,它在设置输入时抛出以下异常:

org.xmlpull.v1.XmlPullParserException: unsupported feature: http://xmlpull.org/v1/doc/features.html#validation (position:START_DOCUMENT null@1:1)

这真的很奇怪,因为 xml 文件不包含任何这样的文本:http://xmlpull.org/v1/doc/features.html#validation

这是位于 jar 中的 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:viewportWidth="24"
android:viewportHeight="24"
android:width="24dp"
android:height="24dp">
<path
android:pathData="M12 3C7.031 3 3 7.027 3 12.001 3 16.967 7.031 21 12 21 16.971 21 20.999 16.967 20.999 12.001 20.998 7.027 16.971 3 12 3m0 20C5.925 23 1 18.073 1 12.001 1 5.925 5.925 1 12 1 18.077 1 23 5.925 23 12.001 22.998 18.073 18.076 23 12 23"
android:fillColor="#242838" />
<path
android:pathData="M13 18h-2v-7h2z"
android:fillColor="#242838" />
<path
android:pathData="M10 10h3v2h-3z"
android:fillColor="#242838" />
<path
android:pathData="M10 16h4v2h-4z"
android:fillColor="#242838" />
<path
android:pathData="M11 6h2v2h-2z"
android:fillColor="#242838" />
</vector>

最佳答案

您遇到的问题与您正在验证的 xml 文件的内容无关。相反,XmlPullParserFactory.setValidating(true) 行似乎是您获得异常的原因。此行所做的是配置为验证 xml 而创建的解析器。不幸的是,XmlPullParserFactory.newPullParser() 创建的解析器实现似乎不支持验证。在代码中注释行 factory.setValidating(true) 应该可以解决问题。

关于java - XmlPullParserException 不受支持的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42362769/

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