如何在intellij中引用图像?

时间:2016-03-15 08:52:02

标签: java scala

到目前为止,我在我的本地桌面上使用了一个路径,其中图像在那里:

val addInvoiceScanButton: WebElement = driver.findElement(By.className("cloudinary-fileupload"))
    addInvoiceScanButton.sendKeys("/Users/username/Desktop/111.png")

现在,我将111.png图像添加到intellij中的资源文件夹中,现在我想知道如何将其引用到桌面上的照片中。?

感谢

1 个答案:

答案 0 :(得分:1)

您可以使用优秀的旧Java API查找资源文件的完整路径:

val filePath: String = this.getClass.getClassLoader.getResource("111.png").getFile

然后像以前一样继续:

addInvoiceScanButton.sendKeys(filePath)