私は同じ問題を抱えており、同様の質問がたくさん見つかりましたが、それを行う方法の良い例はありません. 以下は、私が Xerces-for-Android を使って自分のものを機能させるために行ったことです。幸運を :)
以下は私のために働いた:
- 検証ユーティリティを作成します。
- Android OS のファイルに xml と xsd の両方を取得し、それに対して検証ユーティリティを使用します。
- 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;
少しハックですが、動作します。これを行うにはもっと簡潔な方法があると確信していますが、良い例が見つからなかったので、私の成功を共有したいと思いました。