Чтение файла из папки res в J2ME - PullRequest
1 голос
/ 07 ноября 2011

Я пробовал этот код, но всегда получаю меня "как", как NULL.Мой файл находится в папке "res".

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();
    }

Кто-то знает, что я делаю неправильно?

Спасибо!

1 Ответ

2 голосов
/ 08 ноября 2011

Попробуйте это:

InputStream is = getClass().getResourceAsStream("/"+filename);
...