我正在尝试将 jebehave 报告输出到代码位置以外的位置(D:/abc),
URL url = null;
try {
url = new File("D:/abc").toURI().toURL();
} catch (MalformedURLException e) {
e.printStackTrace();
}
.useStoryReporterBuilder(new StoryReporterBuilder()
.withCodeLocation(url)
.withDefaultFormats().withFormats( TXT,HTML));
但是 jbehave/view 文件夹是在 D:/ 驱动器中创建的,而不是在 D:/abc 文件夹中。可能是什么问题呢