Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9224779
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T04:24:38+00:00 2026-06-18T04:24:38+00:00

I want to read several lines from a text file. These line should be

  • 0

I want to read several lines from a text file. These line should be displayed one by one, when I click the next button. I am able to store the strings in a file and read the first line. But when I try to read the next line using the next button, it stops working. Can anybody tell me a solution for this. Thanks in advance.

I have defined the following,

BufferedReader buffreader;      
String line;
String fav;
StringBuilder text;   
InputStream instream;     
String favQuote0;

This is in my oncreate method

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_save);
    StringBuilder text = new StringBuilder();        

    try {
        // open the file for reading
        InputStream instream = openFileInput("myfilename.txt");

        // if file the available for reading
        if (instream != null) {             
            // prepare the file for reading
            InputStreamReader inputreader = new InputStreamReader(instream);
            BufferedReader buffreader = new BufferedReader(inputreader);   

            while (( line = buffreader.readLine()) != null) {       
                text.append(line);
                text.append('\n');                  
                fav = text.toString();             
            }
        }
    } catch (IOException e) {}

    TextView tv1 = (TextView)findViewById(R.id.textView2);
    tv1.setText(fav);   
}

This is my next button

public void next (View view1) {         
    try {
        // open the file for reading
        InputStream instream = openFileInput("myfilename.txt");

        // if file the available for reading
        if (instream != null) {
            while (( line = buffreader.readLine()) != null) {               
                text.append(line);
                text.append('\n');                  
                fav = text.toString();             
            }
        }
    } catch (IOException e) {}

    TextView tv1 = (TextView)findViewById(R.id.textView2);
    tv1.setText(fav);
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T04:24:39+00:00Added an answer on June 18, 2026 at 4:24 am

    Try this. This i working for me

    BufferedReader reader = new BufferedReader(new InputStreamReader(instream));
    StringBuffer bf = new StringBuffer();
    String json = reader.readLine();
    try {
    do {
    
        bf.append(json);
        json = reader.readLine();
    }while (json != null);
    wt.flush();
    wt.close();
    Log.d("LOG", " read line output "+new String(bf)+" json "+json);
    reader.close();     
    } catch (Exception e) {
    e.printStackTrace(); }
    

    wt is the bufferedwriter which i used to write line. I read from reader and write into file stored locally.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file. I want read that file. But In that if
I want to read a INI file from python, and I came up with
I want to read the pdf file from raw folder if devices have any
I want to read an xml file from the internet. You can find it
Anyone got anything about reading a sequential number from text file per line and
There's an INI file that I want to access and read information from. This
Hi I can't understand this error I want read this XML file: <?xml version=1.0
i want to read an html file by using jquery get function, replace some
I want to read a file piece by piece. The file is split up
I want to read .ppt files from the iPhone mail app. I have already

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.