Which statement, at line 16, retrieves an InputStream for the file /WEB-INF/myresrc.bin?

Given:

Which statement, at line 16, retrieves an InputStream for the file /WEB-INF/myresrc.bin?

Given:

Which statement, at line 16, retrieves an InputStream for the file /WEB-INF/myresrc.bin?

A.
new InputStream(“/WEB-INF/myresrc.bin”);

B.
ctx.getInputStream(“/WEB-INF/myresrc.bin”);

C.
ctx.getResourceAsStream(“/WEB-INF/myresrc.bin”);

D.
new InputStream(new URL(“/WEB-INF/myresrc.bin”));

E.
getClass().getResourceAsStream(“/WEB-INF/myresrc.bin”);

Explanation:



Leave a Reply 0

Your email address will not be published. Required fields are marked *