我正在尝试使用javafxports从javaFX项目构建一个Android应用程序。目前我在移动设备上安装并启动时遇到问题,它会抛出ConfigurationException。这是使用该文件的代码:
public class AppConfig extends XMLConfiguration {
/**
*
*/
private static final long serialVersionUID = 550015250032006413L;
private static AppConfig instance;
private static String configFile = "src/main/assets/config.xml";
// Singleton initialiser
static {
instance = new AppConfig(configFile);
}
/**
* Constructor
*
* @param fileName Configuration file name.
*/
private AppConfig(String fileName) {
init(fileName);
}
/**
* Initialize the class.
*
* @param fileName Configuration file name.
*/
private void init(String fileName) {
setFileName(fileName);
try {
load();
} catch (ConfigurationException configEx) {
configEx.printStackTrace();
}
}
这是gradle文件:
apply plugin: 'org.javafxports.jfxmobile'
buildscript {
repositories {
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases' }
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.5'
}
}
repositories {
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases/' }
}
mainClassName = "com.example.amladzhov.irisandroid.sample.Client.StartApplication"
jfxmobile {
android {
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LGPL2.1'
}
dependencies {
compile 'commons-configuration:commons-configuration:1.6'
compile 'org.apache.commons:commons-exec:1.3'
compile 'commons-discovery:commons-discovery:0.5'
compile 'org.apache.axis:axis:1.4'
compile 'javax.xml.rpc:javax.xml.rpc-api:1.1.1'
//compile 'wsdl4j:wsdl4j:1.6.2'
compile 'org.jdom:jdom:2.0.2'
compile 'com.google.code.ksoap2-android:ksoap2-android:3.6.1'
compile group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.3'
}
}
}
该文件位于
src/main/assets/config.xml
答案 0 :(得分:1)
您不能指望xml文件将在运行时放在src
文件夹下。
但请注意,assets
包下的main
文件夹未导出到Android,因此该文件无法以任何方式提供。
虽然有一个src/android/assets
文件夹可用于放置Android所需的资源,但需要Android API才能读取它。
最好的选择是将xml
文件放在src/main/resources
下,然后使用getResources()
像在Java中定期加载文件一样。
然后将文件放在src/main/resources/config.xml
下,并替换为:
private static String configFile = "src/main/assets/config.xml";
用这个:
private static String configFile = AppConfig.class.getResources("/config.xml").toExternalForm();