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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T07:01:10+00:00 2026-06-15T07:01:10+00:00

I have an ArrayList of objects, which I need to sort using two attributes

  • 0

I have an ArrayList of objects, which I need to sort using two attributes (using Comparators). I need to save the sorted output to a text file with a different name, depending on the attribute used to sort. For example, if the list is sorted by attribute1 then file will be attribute1.txt, if attribute2 the file will be attribute2.txt.

How I want it to work (pseudocode):

if(sortedByAtr1){
    FileWriter fwstream = new FileWriter(sortedByAtribute1.getName()+".txt");   
}
else(sortedByAtr2){
    FileWriter fwstream = new FileWriter(sortedByAtribute2.getName()+".txt");
}

Is this possible?
I appreciate any advice.
Thanks.

Servo

  • 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-15T07:01:11+00:00Added an answer on June 15, 2026 at 7:01 am

    Here’s an object-oriented approach to solving this requirement.

    Use a wrapper for the List and its sorting attribute:

    public class ListSorter<V> {
    
        private final List<V> values;
        private String sortingAttribute;
    
        public ListSorter(List<V> values) {
            this.values = values;
        }
    
        public void sort(AttributeComparator<V> comparator) {
            Collections.sort(values, comparator);
            sortingAttribute = comparator.getSortingAttribute();
        }
    
        public String getSortingAttribute() {
            return sortingAttribute;
        }
    }
    

    Extend the Comparator interface so you can get your attribute name:

    public interface AttributeComparator<T> extends Comparator<T> {
        public String getSortingAttribute();
    }
    

    Create custom AttributeComparators like this:

    public class FooBarComparator implements AttributeComparator<Foo> {
    
        public int compare(Foo foo1, Foo foo2) {
            // skipped nullchecks for brevity
            return foo1.getBar().compare(foo2.getBar());
        }
    
        public String getSortingAttribute() {
            return "bar";
        }
    

    }

    Use:

    List<Foo> yourList = new ArrayList<Foo>();
    ListSorter<Foo> example = new ListSorter<Foo>(yourList);
    AttributeComparator comparator1 = new FooBarComparator();
    example.sort(comparator1);
    FileWriter fwstream = new FileWriter(example.getSortingAttribute() +".txt"); 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

At the moment inside the class I have ArrayList which the objects are stored
Ok, so I have an ArrayList (arrBok) , which is full of book objects
I have an ArrayList of objects in one activity and I need this arrayList
I have two arraylist with a number of model objects.I want to find the
I have a Array list which contains Objects of Restaurants ArrayList<Restaurants> array_sort = new
I have a arraylist(eg.CustInfo) which contains a collection of objects(Cust_details,Cust_Auth) for java classes, which
I have an ArrayList of objects that each of which has a reference to
i have an issue with the understanding the arraylist which contain the objects from
I have an ArrayList of objects, which are used in subclasses of a helperclass.
I have an arraylist of objects in my servlet where I want to call

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.