2

デスクトップで JAXB のように機能する Android 用の軽量ライブラリはありますか? XML スキーマを指定し、コードを作成して解析、検証、操作し、再度記述します。ファイルは既に存在しており、これは金融アプリケーションであるため、変更されていないものは何も変更する必要はありません。空白、順序付け、および文字エンコードを含みます。(私はJAXBで何年もこれを行っていますが、うまく動作しますが、JAXBがなく、フットプリントがあるため、そのコードをAndroidに移植できません。)

4

2 に答える 2

1

Simple FrameworkまたはCastorを試すことができます。

于 2012-07-10T10:21:34.360 に答える
0

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

  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:23:44.150 に答える