Search code examples
javaimageswingpathembedded-resource

Cannot retrieve image by relative path


I am trying to retrieve a picture by relative path but it always returns a java.lang.NullPointerException no matter what path combination I try

private final Icon cardBack = new ImageIcon(getClass().getResource(
    "src/main/resources/Images/cardIcons/cardBack.png"));

enter image description here

https://pastebin.com/sDjP87p3


Solution

  • private final Icon cardBack = new ImageIcon(getClass().getResource("/Images/cardIcons/cardBack.png"));

    Worked after I remade the app into a normal java project. Apparently the problem was caused by Maven, cause yet unknown.