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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:24:52+00:00 2026-05-23T18:24:52+00:00

I’m going through a .txt file that has blank lines between lines of text.

  • 0

I’m going through a .txt file that has blank lines between lines of text.

I have a scanner that takes each line and gives that to a 2nd scanner that gets each word from the line.

The problem I have, is that if I hit an empty line, the first scanner is getting null input for it’s .nextLine().

How can I make sure that:

  1. I have more text remaining (and not just empty lines), It would probably be easier to just make a separate boolean to check this.

  2. If the boolean checks out fine, then to just skip those empty lines and pass the 2nd scanner the text in the lines that actually contain text.

My attempt so far has been this:

Scanner one //scans each line from file
Scanner two //scans each word from scanner one

public boolean more() {
    if (two.more()) {
        return true;
    } else if (one.hasNext()) {
        two = new Scanner(one.nextLine());
        return this.more();
    } else {
        return false;
    }
}

public String getText() {
    String text = "";
    if(two.hasNext()) {
        text = two.next();
    } else {
        while(!one.hasNext()) {
            one.nextLine();
        }
        two = new Scanner(one.NextLine());
        text = two.next();
    }
    return text;
}
  • 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-05-23T18:24:52+00:00Added an answer on May 23, 2026 at 6:24 pm

    A simple solution is to trim the line you get from the first Scanner and then only pass it to the second Scanner if it isn’t empty. For instance:

    import java.util.Scanner;
    
    public class ScannerTest {
       private static final String TXT = "ScannerTest.txt";
    
       public static void main(String[] args) {
          Scanner outerScan = 
               new Scanner(ScannerTest.class.getResourceAsStream(TXT));
          while (outerScan.hasNextLine()) {
             String line = outerScan.nextLine().trim();
             if (!line.isEmpty()) {
                Scanner innerScan = new Scanner(line);
                while (innerScan.hasNext()) {
                   String nextToken = innerScan.next();
                   System.out.println("Token: " + nextToken);
                }
                innerScan.close();
             }
          }
          outerScan.close();
       }
    }
    

    Tested on this file:
    ScannerTest.txt

    Hello world
    
    goodbye world
    
    what the heck
    

    Output:

    Token: Hello
    Token: world
    Token: goodbye
    Token: world
    Token: what
    Token: the
    Token: heck
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have a reasonable size flat file database of text documents mostly saved in
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
In my XML file chapters tag has more chapter tag.i need to display chapters

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.