gpt4 book ai didi

加载外部 Jar(插件架构)时 JavaFX 样式丢失

转载 作者:行者123 更新时间:2023-11-28 14:32:29 29 4
gpt4 key购买 nike

我正在尝试创建一个可以使用插件的 JavaFX 应用程序,这些插件是在运行时加载并打开以查找我创建的特定接口(interface)的实现的其他 jar,我能够加载 jar 并找到具体的类,但是加载的jar无法加载的一些样式,让我解释一下我做了什么:

我创建了三个maven元素,这些元素分别是:

核心:有一个插件应该实现的接口(interface)(TestPlugin.java),和一个主程序应该实现的接口(interface)(TestSceneHandler.java)

测试插件.java

public interface TestPlugin {

void init(TestSceneHandler sceneHandler);

}

TestSceneHandler.java

import javafx.scene.Parent;

public interface TestSceneHandler {

void setView(Parent node);

}

Plugin:将 Core 作为依赖项和一个实现 TestPlugin.java 的类,我离开了 Main.java 以便它可以在两种模式下工作,sigle app和插件,但这并不是真正必要的

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());
}
}

主.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);
}
}

插件 View .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>

样式.css

.root {
-fx-background-color: red;
}

App:将 Core 作为依赖项和一个实现 TestSceneHandler.java 的类

主.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);
}
}

示例.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>

测试场景.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);
}
}

当作为独立应用程序执行元素插件时,结果如下:

Correct styles

但是当它通过App元素执行时,结果如下:

Invalid styles

如您所见,样式消失了,控制台出现错误:

Plugin found!!!
dic 30, 2018 5:41:30 PM com.sun.javafx.css.StyleManager loadStylesheetUnPrivileged
WARNING: Resource "style.css" not found.

最佳答案

问题是由类路径问题引起的,因为您正在创建自己的 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正是为了这类事情。

关于加载外部 Jar(插件架构)时 JavaFX 样式丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53982390/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com