forum.boolean.name

forum.boolean.name (http://forum.boolean.name/index.php)
-   Android (http://forum.boolean.name/forumdisplay.php?f=150)
-   -   Как прочитать txt файл (http://forum.boolean.name/showthread.php?t=14399)

psih1 11.03.2011 07:44

Как прочитать txt файл
 
Столкнуля с токой проблемой как быть?

odd 12.03.2011 17:46

Ответ: FAQ:Как прочитать txt файл
 
Попробуй так:

Код:

try
{
    InputStream instream = openFileInput("myfilename.txt");
    if (instream)
    {
        InputStreamReader inputreader = new InputStreamReader(instream);
        BufferedReader buffreader = new BufferedReader(inputreader);
        String line, text = "";
        while ((line = buffreader.readLine()))
        {
            text = text + line;
        }
    }
    instream.close();
    }
catch (java.io.FileNotFoundException e)
{
}



Часовой пояс GMT +4, время: 18:50.

vBulletin® Version 3.6.5.
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Перевод: zCarot