Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Eclipse (Dynamic Web Project) でサーブレットを使用しています。サブフォルダー pics を含む画像ファイルを Web Content Folder に配置しました。pic1.jpg などの画像があります。
BufferedInputStream bin = new BufferedInputStream(new FileInputStream(new File(location)));
これらのファイルを取得するには、どの場所を指定すればよいですか?
これを試して
ServletContext ctx=getServletContext(); InputStream in = ctx.getResourceAsStream("/pics/pic1.jpg");
getResourceAsStream()"/"Web アプリのルートを表すから始める必要があります。
getResourceAsStream()
"/"