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 8281363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T10:00:27+00:00 2026-06-08T10:00:27+00:00

Can anyone please help me with the code as how to read multiple lines

  • 0

Can anyone please help me with the code as how to read multiple lines from console and store it in array list?
Example, my input from the console is:

12     abc      place1
13     xyz      place2

and I need this data in ArrayList.

So far I tried this code:

Scanner scanner = new Scanner(System.in);
ArrayList informationList = new ArrayList<ArrayList>();
String information = "";
int blockSize = 0, count = 1;
System.out.println("Enter block size");
blockSize = scanner.nextInt();
System.out.println("Enter the Information ");
while (scanner.hasNext() && blockSize >= count) {
    scanner.useDelimiter("\t");
    information = scanner.nextLine();
    informationList.add(information);
    count++;
}

Any help is greatly appreciated.

Input line from console is mix of string and integer

  • 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-08T10:00:33+00:00Added an answer on June 8, 2026 at 10:00 am

    You’ve got a few problems.

    First of all, the initialization line for your ArrayList is wrong. If you want a list of Object so you can hold both Integers and Strings, you need to put Object inside the angle braces. Also, you’re best off adding the generic type argument to the variable definition instead of just on the object instantiation.

    Next, your count is getting messed up because you’re initializing it to 1 instead of 0. I’m assuming “block size” really means the number of rows here. If that’s wrong leave a comment.

    Next, you don’t want to reset the delimiter your Scanner is using, and you certainly don’t want to do it inside your loop. By default a Scanner will break up tokens based on any whitespace which I think is what you want since your data is delimited both by tabs and newlines.

    Also, you don’t need to check hasNext() in your while condition. All of the next*() methods will block waiting for input so the call to hasNext() is unnecessary.

    Finally, you’re not really leveraging the Scanner to do what it does best which is parse tokens into whatever type you want. I’m assuming here that every data line is going to start with a single integer and the be followed by two strings. If that’s the case, just make a call to nextInt() followed by two calls to next() inside your loop and you’ll get all the data parsed out into the data types you need automatically.

    To summarize, here is your code updated with all my suggestions as well as some other bits to get it to run:

    import java.util.ArrayList;
    import java.util.Scanner;
    
    public class Example {
        public static void main(String[] args) {
            Scanner scanner = new Scanner(System.in);
            ArrayList<Object> list = new ArrayList<>();
            System.out.println("Enter block size");
            int blockSize = scanner.nextInt();
            System.out.println("Enter data rows:");
            int count = 0;
            while (count < blockSize) {
                list.add(scanner.nextInt());
                list.add(scanner.next());
                list.add(scanner.next());
                count++;
            }
            System.out.println("\nThe data you entered is:");
            System.out.println(list);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone please help me read this shorthand code? datain = $this.hasClass('up')?+1:($this.hasClass('down')?-1:null); sorry for
Can anyone please help me? I need to remove the first character from a
How can i read and display the NDEF messages from NFC tags? Please help
Can anyone please help me to know how to open an excel sheet in
Can anyone please help me to work out how to achieve the following? I
Can anyone please help me to add video controls (play, pause, forward, seekbar) to
Can anyone please help me with this...I'm not very good with regular expressions and
Can anyone please help me to understand how should i access json data in
Can anyone please help. I'm following a tutorial found here as I have a
Can anyone please help me how to convert string to date I have 3

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.