- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在论坛中寻找与我的问题相关的问题,但没有找到任何内容。对此的任何帮助将不胜感激。
我有一个使用 IntelliJ 的 Java 应用程序,其中包含库 RXTXcomm.jar,该库附带一个 native 库 rxtxSerial.dll,两者都位于单独的文件中。
通过正确设置 RXTXcomm.jar 库的依赖项并将项目结构的“依赖项”部分中的 rxtxSerial.dll 设置为 native 库位置,我在项目中使用了该库,没有出现任何问题。
当我想生成项目的工件时,问题就出现了。我已经使用不同的项目创建了许多工件,但这是我第一次必须向工件添加带有 native .dll 库的库。从项目结构/工件中,我双击 RXTXcomm.jar,就像在项目结构/模块/依赖项部分中一样,添加 rxtxSerial.dll,但当然它不起作用。我尝试将 .dll native 库添加到工件中,就像我之前添加的任何其他 .jar 库一样,但它不起作用。当我运行我的工件时,抛出以下错误:
我认为问题在于我如何将此库添加到工件中,但我找不到如何在网络上进行此搜索。如果阅读有关 NativeUtils 类的信息,但我认为这不是我在这里需要的,因为更多的是工件配置问题。在这里,我向您展示如何添加 RXTXcomm.jar 及其 native 库以使其在 IDE 中运行:
这样,从 IDE 运行应用程序一切就完美了。
我肯定在这里做错了什么,但找不到什么。在我的工件中将此 native 库 (rxtxSerial.dll) 添加到 RXTXcomm.jar 库以避免出现此异常并使其正常工作的正确方法是什么?
任何帮助将不胜感激,如果需要更多信息,请告诉我。
非常感谢,
丹尼尔。
编辑:按照@Andrey的建议,我尝试按照他提供的链接中解释的方式加载.dll库:How to make a JAR file that includes DLL files? ,但它似乎对我不起作用,我不明白为什么。这是我使用过的代码:
public class Main extends Application {
private static DataBase database= new DataBase();
private final static Log logger = LogFactory.getLog(ACWrapper.class);
private static final String LIB_BIN = "/lib-bin/";
private final static String rxtxSerial = "rxtxSerial";
/**
* Function to launch the application
* @param args .
*/
public static void main(String[] args) {
// Merge the Swing and JavaFX threads - needs Java 8
//System.setProperty("javafx.embed.singleThread", "true");
// Verify that Direct3D is enabled (the default setting), to avoid resize issues.
try {
if (Boolean.valueOf(System.getProperty("sun.java2d.noddraw", "false")) ||
!Boolean.valueOf(System.getProperty("sun.java2d.d3d", "true"))) {
throw new IllegalStateException("Do not change the Direct3D default settings (Windows specific), "
+ "it may cause glitches during frame re-sizing.");
}
Application.launch(args);
} catch (IllegalStateException ex){
ex.printStackTrace();
database.insertSystemErrorLog(Thread.currentThread().getStackTrace()[1].getMethodName(),ex);
}
}
/**
* Function to configure the stage where the view will be added
* @param primaryStage the stage to be configured
*/
@Override
public void start(Stage primaryStage) {
try {
if (!EventQueue.isDispatchThread()) {
throw new IllegalStateException(
"FX and Swing thread should be merged. Are you using Java 8 and the javafx.embed.singleThread flag?");
}
loadExternalDllFiles();
//Add Swing view and interface components to the FX frame
SwingNode viewNode = addSwingNodeToFXFrame(primaryStage);
//----------------------------------------------
//Add FX view and interface components to the FX frame
//----------------------------------------------
// Auxiliary panel with provisional content
Accordion auxiliaryPanelFX = new Accordion();
// Do the lay-out using FX
HBox hbox = new HBox(viewNode, auxiliaryPanelFX);
HBox.setHgrow(viewNode, Priority.ALWAYS);
// Show the window
primaryStage.setScene(new Scene(hbox));
primaryStage.setFullScreen(true);
primaryStage.setTitle("FXApp");
primaryStage.setResizable(true);
primaryStage.show();
} catch (IllegalStateException ex){
ex.printStackTrace();
database.insertSystemErrorLog(Thread.currentThread().getStackTrace()[1].getMethodName(),ex);
}
}
private void loadExternalDllFiles() {
logger.info("Loading DLL");
try {
System.loadLibrary(rxtxSerial);
logger.info("DLL is loaded from memory");
} catch (UnsatisfiedLinkError e) {
loadFromJar();
}
}
/**
* When packaged into JAR extracts DLLs, places these into
*/
private static void loadFromJar() {
// we need to put both DLLs to temp dir
String path = "AC_" + new Date().getTime();
loadLib(path, rxtxSerial);
}
/**
* Puts library to temp dir and loads to memory
*/
private static void loadLib(String path, String name) {
name = name + ".dll";
try {
// have to use a stream
InputStream in = ACWrapper.class.getResourceAsStream(LIB_BIN + name);
// always write to different location
File fileOut = new File(System.getProperty("java.io.tmpdir") + "/" + path + LIB_BIN + name);
logger.info("Writing dll to: " + fileOut.getAbsolutePath());
OutputStream out = FileUtils.openOutputStream(fileOut);
IOUtils.copy(in, out);
in.close();
out.close();
System.load(fileOut.toString());
} catch (Exception e) {
System.out.println("Failed to load required DLL");
}
}
/**
* Function to create a SwingNode with all the components using Swing format
* @param primaryStage_ JavaFX Stage where all the Swing components will be added
* @return The SwingNode already built
*/
private SwingNode addSwingNodeToFXFrame(Stage primaryStage_) {
//Set the initial language of the application
Locale locale = new Locale("en", "GB");
LanguageConfiguration.setLanguageSelected(locale);
LanguageConfiguration.setKeyboardLanguage(LanguageConfiguration.KeyboardLanguage.LATIN);
//Create all interface components and add it to the view
InterfaceControlsManager interfaceControlsManager = new InterfaceControlsManager();
TLspSwingView view = interfaceControlsManager.loadSwingInterfaceControls();
// Wrap the Swing view in an FX node so it can be added to the FX hierarchy
SwingNode viewNode = new SwingNode();
viewNode.setContent(view.getHostComponent());
// Clean-up the view when the window is closed
primaryStage_.setOnCloseRequest(event -> view.destroy());
return viewNode;
}
当我调用 loadExternalDllFiles();
时,我开始加载 .dll 文件 (rxtxSerial.dll),当我看到控制台中打印的信息时,它似乎已正确添加,其中打印消息“DLL 已从内存加载”。打印后,我收到与之前上传的图片相同的错误。这是我现在得到的:
请注意,我要添加的 .jar 库 RXTXcomm.jar(它允许我读取 GPS 帧)及其 native 库 rxtxSerial.dll 位于单独的文件中,因此 .dll 未打包在 .我想是 jar 。请参阅下图,了解使用上图中显示的工件配置创建该工件时其文件夹中的内容:
抱歉问题太长。我试图提供尽可能多的信息,因为这让我发疯......
最佳答案
最后,我找到了一种方法,当我尝试运行带有 RXTXcomm.jar 库的 .jar 应用程序时,不会出现此异常。
我已按照此链接 rxtx.qbang.org 的说明进行操作,“unjar 部分”,来自 RXTXcomm 库 wiki。我已经解压了 RXTXcomm.jar 库,因为它是一个 .zip 或 .rar 文件,并且它解压缩了一个名为 gnu 的文件夹。我需要做的正是我在配置“项目结构/工件”中的工件时在问题图像中所做的事情。
构建工件后,我必须转到工件文件夹并粘贴从 RXTXcomm.jar 文件解压缩中检索到的 gnu 文件夹。
粘贴gnu文件夹后,我只需要使用命令行转到工件的路径并运行(仅第一次)命令:
jar uvf Your_Apps_Name_here.jar gnu
就我而言,“Your_Apps_Name_here.jar”是我的 FOMAD.jar。它将像这样聚合它的类:
运行此命令后,仅在创建工件时运行一次,现在我可以随时运行我的应用程序,无论出现任何问题,在执行过程中 RXTXcomm.jar 库都不会出现错误,就像以前一样(一如既往地运行:“java -jar MyApplication.jar”)。
关于java - 将.jar库的 native 库(.dll)添加到IntelliJ中的工件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61679461/
我有一个 Windows Service(一个发布版本),我替换了一个在 Debug模式下构建的 DLL 并尝试启动服务。它引发了错误无法加载文件或程序集“名称”或其依赖项之一。尝试加载格式不正确的程
我使用 Microsoft Visual Basic 6.0 Enterprise Edition SP6 开发了一个 VB6 应用程序。 我已将可执行文件复制到未安装 VB6 的计算机 C。 我已在
我有很多小的 DLL,我想将它们组合成一个大的(更)DLL(如 suggested here)。我可以通过合并我的项目来做到这一点,但我想要一种不那么干扰的方式。 可以将多个 DLL 合并为一个单元吗
我想将非托管 DLL 和图像文件与托管 DLL 合并。我该怎么做?可能吗? 最佳答案 很有可能。这可以通过 bxilmerge 来完成此解决方案可以将非托管 DLL 和图像或其他文件与托管 DLL 合
如何在Windows Server 2003上安装msvcr71.dll,这是我的软件所需的。我真的不想将此dll复制到system32文件夹,因为它可能会破坏此目标系统。 最佳答案 只需将其复制到程
我最近遇到了一个安装在我的系统上的 DLL,Dependancy Walker(以及我尝试过的所有其他实用程序)说按名称或顺序导出为零,但文件大小约为 4mb。我认为 DLL 的唯一目的是导出供其他代
我终于让我的本地主机在本地显示该站点。一切似乎都在朝着这个方向努力。我的下一步是当网站使用 ActiveX.dll 中的函数时,实际上能够从 VB6 IDE 进入代码 更新: 我更新了代码并删除了我在
首先,我指的是Windows环境和VC++编译器。 我想要做的是重建一个Vc++ dll并与已经链接到该lib的exe保持兼容性,而不必重建该exe或使用LoadLibrary动态加载该dll。换句话
我以前这样做过,我不记得我是从网上下载的 DLL 还是其他东西,但我不想感染病毒。我需要访问这个命名空间,以便我可以拥有 Webbrowswer 控件不提供的额外功能。 如何准确添加 Com 引用。还
我正在尝试为依赖于 ghostscript 的库创建 Nuget 包,因此引用 gsdll32.dll - 一个非托管库。我不能只包含一个标准的 dll 引用。我应该把它放在 nuget 目录结构中的
如果我有 Windows 可执行文件,我如何找出它将加载哪些 dll? 我只是谈论哪些将静态加载,而不是那些可能使用 LoadLibrary 等动态加载的内容。 最佳答案 dumpbin是VC++自带
这可能是一个非常菜鸟的问题,但在当今的网络应用程序开发世界中,许多程序员不需要过多处理 dll,因此也懒得去了解它们的用途。 那么什么是dll? 它有什么用? 它是如何工作的? 如何创建一个? 在什么
所以我刚刚开始使用 OpenTK,并将此代码放在一个继承 GameWindow 类的类中: protected override void OnRenderFrame(FrameEventArgs e
如何调试未由 java 应用程序加载的 dll。 场景是这样的:我的 java 应用正在加载正在使用另一个 dll 的 jni.dll,而那个 dll 正在使用另一个 dll。 javajni.dll
我将“更好”放在引号中,因为这是一个定性问题。几年来我一直在编写 COM DLL,直到最近才发现并成功使用了带有 Typelib 概念的标准 DLL。 使用 COM DLL 代替 DLL+Typeli
这种用户机器可能没有msvcp100.dll、msvcp100.dll之类dll的情况怎么处理?我不希望我的软件因为这种错误而无法安装在用户的机器上。我一直在考虑要么找到一个工具并将每个需要的 dll
在 VS2012 中使用 C# .NET 和 COM 互操作,我正在开发一个用于其他几个程序的公共(public)库。为了简化集成,我想将整个库缩减为一个 DLL。该库的特点之一是本地化。它有包含多种
我在 .Net 中使用 FieldTalk Modbus。当我运行应用程序时,我在为 MbusTcpMasterProtocol 创建对象时遇到错误。 MbusTcpMasterProtocol mb
我想指出,我知道如何向/从 GAC 添加/删除程序集。我要问的是,是否有人可以从技术角度向我解释它是如何工作的。将 dll 放在那里有什么意义 - 从节省资源的角度来看。 亲切的问候 最佳答案 将东西
我继承了一个传统的经典 ASP 应用程序,它使用 VB6 ActiveX DLL 来执行业务逻辑。 我想跟踪加载和卸载 DLL 的点。有没有办法在 VB6 DLL 中拦截这些事件? 在相关说明中,Cl
我是一名优秀的程序员,十分优秀!