- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为 czi 文件构建一个 imagej 插件。为了调试插件,我有一个“main”函数,可以打开 imagej 并打开图像。要打开 czi 图像,我需要使用 loci bioformat 插件。
public static void main(String[] args) {
// set the plugins.dir property to make the plugin appear in the Plugins menu
Class<?> clazz = Confocal_Montage.class;
String url = clazz.getResource("/" + clazz.getName().replace('.', '/') + ".class").toString();
String pluginsDir = url.substring("file:".length(), url.length() - clazz.getName().length() - ".class".length());
System.out.println(pluginsDir);
System.setProperty("plugins.dir", pluginsDir);
// start ImageJ
new ImageJ();
// open the sample czi file
try {
ImagePlus[] imps = BF.openImagePlus(System.getProperty("user.dir")+"\\0min_sonicate1.czi");
for (ImagePlus imp :imps) imp.show();
}
catch(IOException exc){
IJ.error("sorry an error occurred: " + exc.getMessage());
}
catch(FormatException exc){
IJ.error("Sorry an error occured: " + exc.getMessage());
}
// run the plugin
IJ.runPlugIn(clazz.getName(), "");
}
但是,当我尝试运行调试器(VSCode)时,它遇到了此错误
SLF4J: The requested version 1.5.10 by your slf4j binding is not compatible with [1.6, 1.7]
SLF4J: See http://www.slf4j.org/codes.html#version_mismatch for further details.
Exception in thread "main" java.lang.NoSuchMethodError: org.slf4j.helpers.MessageFormatter.format(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String;
at org.slf4j.impl.Log4jLoggerAdapter.debug(Log4jLoggerAdapter.java:246)
at ome.scifio.common.IniParser.parseINI(IniParser.java:144)
at ome.scifio.common.IniParser.parseINI(IniParser.java:101)
at loci.common.IniParser.parseINI(IniParser.java:97)
at loci.plugins.prefs.OptionsList.<init>(OptionsList.java:66)
at loci.plugins.in.ImporterOptions.<init>(ImporterOptions.java:158)
at loci.plugins.BF.openImagePlus(BF.java:78)
at com.mycompany.imagej.Confocal_Montage.main(Confocal_Montage.java:77)
我已经尝试过Maven + SLF4J: Version conflict when using two different dependencies that require two different SLF4J versions中的解决方案IE。将 slf4j 版本 1.7.5 的依赖项添加到我的 pom 中,但是当我这样做时,我收到此错误。
log4j:WARN No appenders could be found for logger (ome.scifio.common.IniParser).
log4j:WARN Please initialize the log4j system properly.
Exception in thread "main" java.lang.NumberFormatException: null
at java.base/java.lang.Integer.parseInt(Integer.java:614)
at java.base/java.lang.Integer.parseInt(Integer.java:770)
at loci.formats.in.ZeissCZIReader.translateExperiment(ZeissCZIReader.java:1870)
at loci.formats.in.ZeissCZIReader.translateMetadata(ZeissCZIReader.java:965)
at loci.formats.in.ZeissCZIReader.initFile(ZeissCZIReader.java:540)
at loci.formats.FormatReader.setId(FormatReader.java:1333)
at loci.plugins.in.ImportProcess.initializeFile(ImportProcess.java:482)
at loci.plugins.in.ImportProcess.execute(ImportProcess.java:146)
at loci.plugins.BF.openImagePlus(BF.java:95)
at loci.plugins.BF.openImagePlus(BF.java:80)
at com.mycompany.imagej.Confocal_Montage.main(Confocal_Montage.java:77)
我的 Maven 依赖树看起来像这样
[INFO] --- maven-dependency-plugin:3.0.0:tree (default-cli) @ File_To_Montage ---
[INFO] com.mikedavies:File_To_Montage:jar:0.1.0-SNAPSHOT
[INFO] +- net.imagej:ij:jar:1.51h:compile
[INFO] +- loci:loci_plugins:jar:5.0.0-beta1:compile
[INFO] | +- loci:bio-formats:jar:5.0.0-beta1:compile
[INFO] | | +- loci:mdbtools-java:jar:5.0.0-beta1:compile
[INFO] | | +- loci:metakit:jar:5.0.0-beta1:compile
[INFO] | | +- loci:poi-loci:jar:5.0.0-beta1:compile
[INFO] | | | \- commons-logging:commons-logging:jar:1.1.1:compile
[INFO] | | +- loci:turbojpeg:jar:5.0.0-beta1:compile
[INFO] | | \- edu.ucar:netcdf:jar:4.0.03:compile
[INFO] | +- loci:loci-legacy:jar:5.0.0-beta1:compile
[INFO] | | +- loci:scifio-devel:jar:5.0.0-beta1:compile
[INFO] | | +- xalan:serializer:jar:2.7.1:runtime
[INFO] | | | \- xml-apis:xml-apis:jar:1.3.04:runtime
[INFO] | | \- xalan:xalan:jar:2.7.1:runtime
[INFO] | +- loci:ome-xml:jar:5.0.0-beta1:compile
[INFO] | +- loci:scifio:jar:5.0.0-beta1:compile
[INFO] | | +- loci:jai_imageio:jar:5.0.0-beta1:compile
[INFO] | | +- loci:lwf-stubs:jar:5.0.0-beta1:compile
[INFO] | | +- loci:specification:jar:5.0.0-beta1:compile
[INFO] | | | +- junit:junit:jar:4.12:test
[INFO] | | | | \- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO] | | | \- org.testng:testng:jar:6.8:compile
[INFO] | | | +- org.beanshell:bsh:jar:2.0b4:compile
[INFO] | | | +- com.beust:jcommander:jar:1.27:compile
[INFO] | | | \- org.yaml:snakeyaml:jar:1.6:compile
[INFO] | | +- org.scijava:native-lib-loader:jar:2.1.4:compile
[INFO] | | +- com.esotericsoftware.kryo:kryo:jar:shaded:2.21:compile
[INFO] | | \- org.perf4j:perf4j:jar:0.9.13:compile
[INFO] | +- com.jgoodies:forms:jar:1.2.1:compile
[INFO] | \- log4j:log4j:jar:1.2.14:compile
[INFO] \- org.slf4j:slf4j-log4j12:jar:1.5.10:test
[INFO] \- org.slf4j:slf4j-api:jar:1.7.21:compile
我的 Pom.xml 的开头看起来像这样
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>14.0.0</version>
</parent>
<groupId>com.mycompany</groupId>
<artifactId>File_To_Montage</artifactId>
<version>0.1.0-SNAPSHOT</version>
<url>mycompany.com</url>
<repositories>
<repository>
<id>imagej.public</id>
<url>http://maven.imagej.net/content/groups/public</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>ij</artifactId>
</dependency>
<dependency>
<groupId>loci</groupId>
<artifactId>loci_plugins</artifactId>
<version>5.0.0-beta1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.5</version>
</dependency>
</dependencies>
任何关于如何解决这个问题的想法都会很棒,它让我陷入困境
最佳答案
弄清楚了,所以对于其他偶然发现这个问题的人来说,有两个问题。首先,我确实需要包含 slf4j 依赖项(简单和 api)和 scijava-log-slf4j (不确定我是否需要所有这些,但它可以与所有声明的它们一起使用)。
<dependency>
<groupId>org.scijava</groupId>
<artifactId>scijava-log-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
由于这些依赖项已在 scijava pom 中进行管理,因此无需包含版本号。我还在 loci:loci_plugins 依赖项中包含了一个排除项
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
这消除了 slf4j 问题和警告,但留下了 NumberFormatException。
Exception in thread "main" java.lang.NumberFormatException: null
at java.base/java.lang.Integer.parseInt(Integer.java:614)
at java.base/java.lang.Integer.parseInt(Integer.java:770)
at loci.formats.in.ZeissCZIReader.translateExperiment(ZeissCZIReader.java:1870)
at loci.formats.in.ZeissCZIReader.translateMetadata(ZeissCZIReader.java:965)
at loci.formats.in.ZeissCZIReader.initFile(ZeissCZIReader.java:540)
at loci.formats.FormatReader.setId(FormatReader.java:1333)
at loci.plugins.in.ImportProcess.initializeFile(ImportProcess.java:482)
at loci.plugins.in.ImportProcess.execute(ImportProcess.java:146)
at loci.plugins.BF.openImagePlus(BF.java:95)
at loci.plugins.BF.openImagePlus(BF.java:80)
at com.mycompany.imagej.Confocal_Montage.main(Confocal_Montage.java:77)
这取决于我使用的生物格式版本,该版本已在后续版本中修复。不幸的是,后来的版本不在 Maven 中央存储库中,而是在 OpenMicroscopy 存储库中,这意味着将其包含在 pom 中
<repository>
<id>OpenMicroscopy</id>
<url>http://maven.imagej.net/content/groups/public</url>
</repository>
以及生物格式插件的依赖项
<dependency>
<groupId>ome</groupId>
<artifactId>bioformats_package</artifactId>
<version>5.3.3</version>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
ch.qos.logback:logback-classic 排除是因为其中有重复的类和 org.slf4j:slf4j-simple,瞧,它有效!
关于java - 使用loci.plugins(生物格式)时出现SLF4J version_mismatch错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47445270/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!