当前位置: 代码迷 >> J2SE >> getResourceAsStream 有关问题大家来看看
  详细解决方案

getResourceAsStream 有关问题大家来看看

热度:237   发布时间:2016-04-24 14:54:24.0
getResourceAsStream 问题大家来看看,
InputStream   is   =   Test1.class.getClassLoader().getResourceAsStream( "/db.property ");db.property放web-inf   class下面,怎么就是读不出来

------解决方案--------------------
你可以使用以下代码试一下:
InputStream is = Test1.class.getResourceAsStream( "db.property ");
主要是要把getClassLoader()去掉。

如果还不行,那就需要把db.property文件放在与Test1.class相同的包下就可以了。