Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've tried this code but always get me 'is' as NULL. My file is located at "res" folder.

StringBuffer str = new StringBuffer();
    InputStream is = getClass().getResourceAsStream(filename);
    if(is == null) {
        System.out.println("'is' is null");
    } else {

        InputStreamReader reader = new InputStreamReader(is);

        String line = null;
        // Read a single line from the file. null represents the EOF.
        while ((line = readLine(reader)) != null) {
            // Append the read line to the main form with a linefeed ('\n')
            str.append(line + "\n");
        }
        reader.close();
    }

Someone knows what I'm doing wrong?

Thx!

share|improve this question
1  
What is the value of the filename? – Gorkem Ercan Nov 7 '11 at 19:12
Can you tell me the filename ? – bharath Nov 23 '11 at 10:56

1 Answer

Try this:

InputStream is = getClass().getResourceAsStream("/"+filename);
share|improve this answer
Ok! I'll try it I'll feed back with results – vicmonmena Nov 15 '11 at 9:46
Hi!I've tried that code: StringBuffer str = new StringBuffer(); InputStream is = getClass().getResourceAsStream("/"+filename); if(is == null) {... but always returns null – vicmonmena Nov 15 '11 at 17:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.