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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T12:59:30+00:00 2026-06-14T12:59:30+00:00

I have created a method to translate multiple lines into Pig Latin. The expected

  • 0

I have created a method to translate multiple lines into Pig Latin. The expected input looks like so:

The cat jumped over the fox

My code outputs the text, correctly translated into Pig Latin and with the proper formatting (i.e. words separated out, lines separated out. However, I do this by using two instances of the scanner class.
Could anyone suggest how I could remove the two instances and condense them into one?

By the way, feel free to offer any other suggestions, but bear in mind I am a novice who is still learning!

    File file = new File("projectdata.txt");
    try 
    {
        Scanner scan1 = new Scanner(file);
        while (scan1.hasNextLine()) 
        {
            Scanner scan2 = new Scanner(scan1.nextLine());
            while (scan2.hasNext())
            {
                String s = scan2.next();
                boolean moreThanOneSyllable = Syllable.hasMultipleSyllables(s);
                char firstLetter = s.charAt(0);
                String output = "";
                if (!moreThanOneSyllable && "aeiou".indexOf(firstLetter) >= 0)
                    output = s + "hay" + " ";
                else if (moreThanOneSyllable && "aeiou".indexOf(firstLetter) >= 0)
                    output = s + "way" + " ";
                else 
                {
                    String restOfWord = s.substring(1);
                    output = restOfWord + firstLetter + "ay" + " ";
                }
                System.out.print(output);
            }
            System.out.println("");
            scan2.close();
        }
        scan1.close();
    } 

    catch (FileNotFoundException e) 
    {
        e.printStackTrace();
    }
}

Note: I had posted something similar on Code Overflow a few days ago and have taken some advice from the answer I was given there. However, whilst someone recommended not using two scanner classes, I just couldn’t get the formatting right.

  • 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-14T12:59:31+00:00Added an answer on June 14, 2026 at 12:59 pm

    With your outer-loop you can read the file line-by-line. With the outer-loop you treat each line read as a string.

    Scanner scan2 = new Scanner(scan1.nextLine());
    

    With that you are trying to read a String using a Scanner. You should change it as follows:

    String line = scan1.nextLine();
    

    Split the line into an array of strings (words) and work on it.

    String[] words = line.split("\\s+");
    

    The inner loop can just iterate through the array.

    for(String word : words) {
        //your existing logic can go here
    }
    

    Update

    You can just escape the empty lines as follows. Any exception handling is not required.

    String line = scan1.nextLine();
    if(line.isEmpty()) {
        System.out.println();
        continue;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a method to check if the keyboard is used in an
I have created a method that should ideally take a single Account object and
I have created a custom method that will return unique items, together with the
I have created a new method in one of the project's controllers that it
I have created a custom shipping method to show depo-names from which customers will
I have created a UserControl called AutorControl with a method to clear its textbox:
I have created several UI elements in the viewDidLoad method. I want to change
I have created a gem that adds a new method to the class ActiveRecord::Base.
I have created a class library called AddServiceLibrary in which I have a method
I have created a Webpage which will post as post method..not as get method.

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.