我正在尝试创建一个可以与插件一起使用的JavaFX应用程序,这些插件是在运行时加载的其他jar,并开放以查找我创建的特定接口的实现,我可以加载jar并找到特定的类,但是找到一些无法加载的jar的样式,让我解释一下我的工作:
我创建了三个Maven项目,这些项目如下:
核心:具有插件应实现的接口(TestPlugin.java)和主程序应实现的接口(TestSceneHandler.java)
TestPlugin.java
public interface TestPlugin {
void init(TestSceneHandler sceneHandler);
}
TestSceneHandler.java
import javafx.scene.Parent;
public interface TestSceneHandler {
void setView(Parent node);
}
插件:具有 Core 作为依赖项和一个实现TestPlugin.java的类,我离开了Main.java,以便它可以在两种模式下工作,单独应用和插件,但这并不是必需的
MyTestViewController.java
import javafx.fxml.FXMLLoader;
import javafx.scene.layout.GridPane;
import java.io.IOException;
public class MyTestViewController extends GridPane {
public MyTestViewController() {
FXMLLoader fxmlLoader = new FXMLLoader(this.getClass().getResource("/pluginView.fxml"));
fxmlLoader.setClassLoader(getClass().getClassLoader());
fxmlLoader.setRoot(this);
fxmlLoader.setController(this);
try {
fxmlLoader.load();
} catch (IOException exception) {
throw new RuntimeException(exception);
}
}
}
TestPluginImpl.java
package sample;
public class TestPluginImpl implements TestPlugin {
@Override
public void init(TestSceneHandler testSceneHandler) {
testSceneHandler.setView(new MyTestViewController());
}
}
Main.java
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
primaryStage.setTitle("Hello World");
primaryStage.setScene(new Scene(new MyTestViewController(), 300, 275));
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
pluginView.fxml
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.control.Label?>
<fx:root xmlns:fx="http://javafx.com/fxml/1"
type="javafx.scene.layout.GridPane"
alignment="center" hgap="10" vgap="10" stylesheets="style.css">
<Label>
Hello world
</Label>
</fx:root>
style.css
.root {
-fx-background-color: red;
}
App :具有 Core 作为依赖项和一个实现TestSceneHandler.java
的类Main.java
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
primaryStage.setTitle("Hello World");
primaryStage.setScene(new Scene(new TestScene(), 300, 275));
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
sample.fxml
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.control.Label?>
<fx:root xmlns:fx="http://javafx.com/fxml/1"
type="javafx.scene.layout.BorderPane">
<top>
<HBox style="-fx-background-color: orange;">
<children>
<Label>
This is the header
</Label>
</children>
</HBox>
</top>
</fx:root>
TestScene.java
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.layout.BorderPane;
import java.io.*;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.Arrays;
import java.util.Enumeration;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.zip.ZipFile;
public class TestScene extends BorderPane implements TestSceneHandler {
private static final String ROOT_FOLDER = "Zamba";
private static final String PLUGIN_FOLDER = "plugins";
private static final String USER_HOME = System.getProperty("user.home");
public TestScene() {
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/sample.fxml"));
fxmlLoader.setRoot(this);
fxmlLoader.setController(this);
try {
fxmlLoader.load();
} catch (IOException exception) {
throw new RuntimeException(exception);
}
File pluginFolder = initFolder();
readPlugins(pluginFolder);
}
private File initFolder() {
final String ROOT_FOLDER_PATH = USER_HOME + "/" + ROOT_FOLDER;
final String PLUGIN_FOLDER_PATH = ROOT_FOLDER_PATH + "/" + PLUGIN_FOLDER;
File appFolder = new File(ROOT_FOLDER_PATH);
if(!appFolder.exists()) {
appFolder.mkdir();
}
File pluginFolder = new File(PLUGIN_FOLDER_PATH);
if(!pluginFolder.exists()) {
pluginFolder.mkdir();
}
return pluginFolder;
}
/**
* Determine whether a file is a JAR File.
*/
public static boolean isJarFile(File file) throws IOException {
if (!isZipFile(file)) {
return false;
}
ZipFile zip = new ZipFile(file);
boolean manifest = zip.getEntry("META-INF/MANIFEST.MF") != null;
zip.close();
return manifest;
}
/**
* Determine whether a file is a ZIP File.
*/
public static boolean isZipFile(File file) throws IOException {
if(file.isDirectory()) {
return false;
}
if(!file.canRead()) {
throw new IOException("Cannot read file "+file.getAbsolutePath());
}
if(file.length() < 4) {
return false;
}
DataInputStream in = new DataInputStream(new BufferedInputStream(new FileInputStream(file)));
int test = in.readInt();
in.close();
return test == 0x504b0304;
}
private void readPlugins(File pluginFolder) {
File[] pluginFolderFiles = pluginFolder.listFiles();
Arrays.asList(pluginFolderFiles).forEach(file -> {
System.out.println("Filee: " + file.getAbsolutePath());
try {
if(isJarFile(file)) {
JarFile jarFile = new JarFile(file);
Enumeration<JarEntry> e = jarFile.entries();
URL[] urls = { new URL("jar:file:" + file.getAbsolutePath()+"!/") };
URLClassLoader cl = URLClassLoader.newInstance(urls);
while (e.hasMoreElements()) {
JarEntry je = e.nextElement();
if(je.isDirectory() || !je.getName().endsWith(".class")){
continue;
}
// -6 because of .class
String className = je.getName().substring(0,je.getName().length()-6);
className = className.replace('/', '.');
Class c = cl.loadClass(className);
if(TestPlugin.class.isAssignableFrom(c) && c != TestPlugin.class) {
System.out.println("Plugin found!!!");
TestPlugin plugin = (TestPlugin)c.newInstance();
plugin.init(this);
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
});
}
@Override
public void setView(Parent parent) {
setCenter(parent);
}
}
当将项目插件作为独立应用程序执行时,结果如下:
但是当通过 App 项目执行时,结果如下:
如您所见,样式消失了,控制台上出现错误:
Plugin found!!!
dic 30, 2018 5:41:30 PM com.sun.javafx.css.StyleManager loadStylesheetUnPrivileged
WARNING: Resource "style.css" not found.
答案 0 :(得分:1)
该问题是由类路径问题引起的,因为您正在创建自己的ClassLoader
来加载插件。 FXML中stylesheet
属性的值为style.css
。这与这样做相同:
GridPane pane = new GridPane();
pane.getStylesheets().add("style.css");
将相对于类路径的根目录查找名为style.css
的资源。这是因为没有计划。有关详细信息,请参见documentation。问题在于此行为对JavaFX类使用ClassLoader
来加载资源。不幸的是,您的资源对那个ClassLoader
不可见,而是您创建用来加载该插件的ClassLoader
。
此问题的解决方法是提供CSS资源文件的完整URL。这可以通过使用@
(请参见Introduction to FXML)来完成。使用@
时,位置相对于FXML文件。例如,如果您的FXML文件是/fxml/PluginView.fxml
,而CSS文件是/styles/style.css
,则您将:
<?import javafx.scene.control.Label?>
<fx:root xmlns:fx="http://javafx.com/fxml/1"
type="javafx.scene.layout.GridPane"
alignment="center" hgap="10" vgap="10" stylesheets="@../styles/style.css">
<Label>
Hello world
</Label>
</fx:root>
这将调用getStylesheets().add(...)
,例如:
jar:file:///path/to/plugin/file.jar!/styles/style.css
无论使用哪个ClassLoader
都可以定位。
另一个可能的问题是您的style.css
文件中。您使用.root {}
,但是root
样式类仅自动添加到Scene
的根。您可能想要做的是设置自己的样式类,并在CSS文件中使用 that 。
此外,您正在编写自己的插件发现和加载代码。并不是说您不能继续做自己正在做的事情,而是让您知道您不必重新发明轮子。 Java确实有java.util.ServiceLoader
用于这类事情。