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

  • Home
  • SEARCH
  • 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 939215
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T21:45:17+00:00 2026-05-15T21:45:17+00:00

I’m learning about text processing in Java for a class and the example in

  • 0

I’m learning about text processing in Java for a class and the example in class was to read in data from a file, do text processing, write back data (List) to the file. I understand the example in that he reads in each line into a String and adds that line to the list and uses the .split(” “) and then Collections.sort to sort the data returning one of the strings. However, if there are commas and extra whitespace, I don’t know how to format those. I read up on regex, but wasn’t sure if that was needed since we haven’t covered that and was going for the trim() method. But if I put the trim() method in the compare method of my class that implements Comparator that gets passed to Collections.sort, it wouldn’t get passed the correctly formatted string since compare returns an int. So I guess I’m looking for some general guidelines to help with this assignment, but not giving away the answer completely. Thanks.

Edit:
Assignment is to write the list in order, deleting duplicates and extra whitespace.

    public class TextProcess 
    {
        public static void main(String[] args)
        {
            try {
// get data from class file
                List<String> data = TextFileUtils.readTextFile("addressbooktest.txt");
// process data.  Really just the same address book that looks like
// firstName, lastName, phone, email
// with the commas, but deleting duplicates, the extra whitespace, and sorting alphabetically
                Collections.sort(data, FIRSTNAMECOMPARATOR); 
       // write to output file
                TextFileUtils.writeTextFile(data, "parsedaddressbooktest.txt");
                }

            catch (IOException e) {
                e.printStackTrace();
            }
        }
        private static final FirstNameComparator FIRSTNAMECOMPARATOR = new FirstNameComparator(); 
    }

    class FirstNameComparator implements Comparator<String> 
    { 
       public int compare(String s1, String s2) 
       {

          String[] st1 = s1.split(","); 
          String[] st2 = s2.split(","); 


             String firstName1 = st1[0].toUpperCase().trim(); 
             String lastName1 = st1[1].toUpperCase().trim(); 

             String firstName2 = st2[0].toUpperCase().trim(); 
             String lastName2 = st2[1].toUpperCase().trim(); 
             if (!(firstName1.equals(firstName2))) 
                return firstName1.compareTo(firstName2); 
             else 
                return lastName1.compareTo(lastName2); 
       } 
    } 
  • 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-15T21:45:18+00:00Added an answer on May 15, 2026 at 9:45 pm

    A Comparator is simply a way of determining the relative order of two items, nothing more. You’d use it when you want to control the order that a collection of objects are sorted, but in this case it sounds like you’re trying to mutate the objects within your comparator; this isn’t going to work.

    You’re right that the trim() method will get rid of leading and trailing whitespace (subject to its own definition of whitespace, which is fine for simple use cases like yours). You’ll need to use this earlier on; after you’ve extracted the “raw” data, of course, but before you add the data to the list.

    Beyond that, you haven’t actually said what the requirements are. I can assume that you need to discard trailing whitespace, but what about the commas? Should these be interpreted as element separators, in a functionally equivalent way to newlines? Or is something else needed?

    I think you’re on the right track in general; just think about the steps required and try to do each one separately as it’s cleaner that way. From what I can tell, your steps might be something like:

    1. Identify and open a stream to read data from a file (done).
    2. Use this stream to serve up character data from the file, one line at a time (done).
    3. For each line, remove whitespace and split on commas.
    4. For each formatted string, add it to the list.
    5. Sort the list in a given order.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 509k
  • Answers 509k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Unfortunately, data binding syntax (<%# %>) is not supported in… May 16, 2026 at 4:42 pm
  • Editorial Team
    Editorial Team added an answer :vimgrep /^\s*bool\s+\i+\s*=\s*(false)\|(true);\s*$/ [files....] ^ ^^^^ ^ You have some problems,… May 16, 2026 at 4:42 pm
  • Editorial Team
    Editorial Team added an answer If you don't want the behavior of DockPanel, don't use… May 16, 2026 at 4:42 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have text I am displaying in SIlverlight that is coming from a CMS
link Im having trouble converting the html entites into html characters, (&# 8217;) i
Does anyone know how can I replace this 2 symbol below from the string
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have just tried to save a simple *.rtf file with some websites and
Seemingly simple, but I cannot find anything relevant on the web. What is the
this is what i have right now Drawing an RSS feed into the php,
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti

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.