Cant retrieve an images from the WEB-INF folder ussing classLoader.getResourceAsStream()

前端 未结 3 1136
无人共我
无人共我 2021-01-14 05:15

The hold noon i was trying to make my app send both html+images via javamail, i only managed to send html, but with the image i am having a bit of problems. I decided to cre

3条回答
  •  广开言路
    2021-01-14 05:52

    You must use ServletContext.getResourceAsStream() to load a file from a war. ClassLoader.getResourceAsStream loads a class from the classpath.

提交回复
热议问题