4

Android のスキーマに対して xml をチェックしようとしていますが、関数の最初の行で、スキーマ ファクトリ インスタンスを作成するときに例外が発生します。

例外行:

schemaFactory= SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);

XMLSchema-instanceXMLSchemaも使用しましたが、最初に同じ例外が発生しました。

他の多くの人がこのように同じ問題を抱えているのを見てきましたが、この問題に対する答えはまだ見つかりません.

参考までに-次の機能で使用しています:

public static boolean validateWithExtXSDUsingSAX(String xml, String xsd) throws
        ParserConfigurationException, IOException {
    try {
        SAXParserFactory factory = SAXParserFactory.newInstance();
        factory.setValidating(false);
        factory.setNamespaceAware(true);

        SchemaFactory schemaFactory = null;
        try {
            schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
        } catch (Exception e) {
            System.out.println("schema factory error" + e.getMessage());
        }

        SAXParser parser = null;

        try {
            factory.setSchema(schemaFactory.newSchema(new Source[] { new StreamSource(xsd) }));
            parser = factory.newSAXParser();
        } catch (SAXException se) {
            System.out.println("SCHEMA : " + se.getMessage()); // problem in
                                                               // the XSD
                                                               // itself
            return false;
        }

        XMLReader reader = parser.getXMLReader();
        reader.setErrorHandler(

        new ErrorHandler() {

            public void warning(SAXParseException e) throws SAXException {
                System.out.println("WARNING: " + e.getMessage()); // do
                                                                  // nothing
            }

            public void error(SAXParseException e) throws SAXException {
                System.out.println("ERROR : " + e.getMessage());
                throw e;
            }

            public void fatalError(SAXParseException e) throws SAXException {
                System.out.println("FATAL : " + e.getMessage());
                throw e;
            }
        });

        reader.parse(new InputSource(xml));

        return true;
    } catch (ParserConfigurationException pce) {
        throw pce;
    } catch (IOException io) {
        throw io;
    } catch (SAXException se) {
        return false;
    }
}

編集

Android の元のバージョンに含まれている Java XML バリデータには、いくつかの問題があります。代わりに Xerces を使用してみることができます。ここからダウンロードできます。

http://code.google.com/p/xerces-for-android/

ダウンロード セクションにダウンロードはありませんが、SVN チェックアウトを実行してソース コードをダウンロードできます。

4

2 に答える 2

1

私は同じ問題を抱えており、同様の質問がたくさん見つかりましたが、それを行う方法の良い例はありません. 以下は、私が Xerces-for-Android を使って自分のものを機能させるために行ったことです。幸運を :)

以下は私のために働いた:

  1. 検証ユーティリティを作成します。
  2. Android OS のファイルに xml と xsd の両方を取得し、それに対して検証ユーティリティを使用します。
  3. Xerces-For-Android を使用して検証を行います。

Android は使用できるいくつかのパッケージをサポートしています。http: //docs.oracle.com/javase/1.5.0/docs/api/javax/xml/validation/package-summary.htmlに基づいて xml 検証ユーティリティを作成しました。

私の最初のサンドボックス テストは Java で非常にスムーズでした。その後、それを Dalvik に移植しようとしたところ、コードが機能しないことがわかりました。Dalvik と同じようにサポートされていないものがあるため、いくつかの変更を加えました。

Android 用の xerces への参照を見つけたので、サンドボックス テストを変更しました (以下は Android では機能しません。この後の例は機能します)。

import java.io.File;

import javax.xml.XMLConstants;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.transform.Source;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamSource;
import javax.xml.validation.Schema;
import javax.xml.validation.SchemaFactory;
import javax.xml.validation.Validator;

import org.w3c.dom.Document;

/**
 * A Utility to help with xml communication validation.
 */
public class XmlUtil {

    /**
     * Validation method. 
     * Base code/example from: http://docs.oracle.com/javase/1.5.0/docs/api/javax/xml/validation/package-summary.html
     * 
     * @param xmlFilePath The xml file we are trying to validate.
     * @param xmlSchemaFilePath The schema file we are using for the validation. This method assumes the schema file is valid.
     * @return True if valid, false if not valid or bad parse. 
     */
    public static boolean validate(String xmlFilePath, String xmlSchemaFilePath) {

        // parse an XML document into a DOM tree
        DocumentBuilder parser = null;
        Document document;

        // Try the validation, we assume that if there are any issues with the validation
        // process that the input is invalid.
        try {
            // validate the DOM tree
            parser = DocumentBuilderFactory.newInstance().newDocumentBuilder();
            document = parser.parse(new File(xmlFilePath));

            // create a SchemaFactory capable of understanding WXS schemas
            SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);

            // load a WXS schema, represented by a Schema instance
            Source schemaFile = new StreamSource(new File(xmlSchemaFilePath));
            Schema schema = factory.newSchema(schemaFile);

            // create a Validator instance, which can be used to validate an instance document
            Validator validator = schema.newValidator();
            validator.validate(new DOMSource(document));
        } catch (Exception e) {
            // Catches: SAXException, ParserConfigurationException, and IOException.
            return false;
        }     

        return true;
    }
}

上記のコードは、Android 用の xerces ( http://gc.codehum.com/p/xerces-for-android/ ) で動作するように一部変更する必要がありました。プロジェクトを取得するには SVN が必要です。

download xerces-for-android
    download silk svn (for windows users) from http://www.sliksvn.com/en/download
        install silk svn (I did complete install)
        Once the install is complete, you should have svn in your system path.
        Test by typing "svn" from the command line.
        I went to my desktop then downloaded the xerces project by:
            svn checkout http://xerces-for-android.googlecode.com/svn/trunk/ xerces-for-android-read-only
        You should then have a new folder on your desktop called xerces-for-android-read-only

上記の jar を使用して (最終的には jar にします。簡単なテストのためにソースに直接コピーするだけです。同じことをしたい場合は、Ant ( http://ant.apache ) を使用して jar をすばやく作成できます。 .org/manual/using.html ))、私は xml 検証のために以下を機能させることができました:

import java.io.File;
import java.io.IOException;

import mf.javax.xml.transform.Source;
import mf.javax.xml.transform.stream.StreamSource;
import mf.javax.xml.validation.Schema;
import mf.javax.xml.validation.SchemaFactory;
import mf.javax.xml.validation.Validator;
import mf.org.apache.xerces.jaxp.validation.XMLSchemaFactory;

import org.xml.sax.SAXException;

/**
 * A Utility to help with xml communication validation.
 */public class XmlUtil {

    /**
     * Validation method. 
     * 
     * @param xmlFilePath The xml file we are trying to validate.
     * @param xmlSchemaFilePath The schema file we are using for the validation. This method assumes the schema file is valid.
     * @return True if valid, false if not valid or bad parse or exception/error during parse. 
     */
    public static boolean validate(String xmlFilePath, String xmlSchemaFilePath) {

        // Try the validation, we assume that if there are any issues with the validation
        // process that the input is invalid.
        try {
            SchemaFactory  factory = new XMLSchemaFactory();
            Source schemaFile = new StreamSource(new File(xmlSchemaFilePath));
            Source xmlSource = new StreamSource(new File(xmlFilePath));
            Schema schema = factory.newSchema(schemaFile);
            Validator validator = schema.newValidator();
            validator.validate(xmlSource);
        } catch (SAXException e) {
            return false;
        } catch (IOException e) {
            return false;
        } catch (Exception e) {
            // Catches everything beyond: SAXException, and IOException.
            e.printStackTrace();
            return false;
        } catch (Error e) {
            // Needed this for debugging when I was having issues with my 1st set of code.
            e.printStackTrace();
            return false;
        }

        return true;
    }
}

いくつかの補足事項:

ファイルを作成するために、文字列をファイルに書き込む単純なファイル ユーティリティを作成しました。

public static void createFileFromString(String fileText, String fileName) {
    try {
        File file = new File(fileName);
        BufferedWriter output = new BufferedWriter(new FileWriter(file));
        output.write(fileText);
        output.close();
    } catch ( IOException e ) {
       e.printStackTrace();
    }
}

また、アクセスできる領域に書き込む必要があったため、以下を利用しました。

String path = this.getActivity().getPackageManager().getPackageInfo(getPackageName(), 0).applicationInfo.dataDir;   

少しハックですが、動作します。これを行うにはもっと簡潔な方法があると確信していますが、良い例が見つからなかったので、私の成功を共有したいと思いました。

于 2013-09-17T22:27:50.933 に答える
0

Google リポジトリからjar ファイルxerces-for-android.jarをダウンロードするためのリンク。

上記のリンクが利用できない場合は、このページを使用してダウンロードしてください: xerces

于 2014-12-26T07:38:38.720 に答える