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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T04:49:46+00:00 2026-05-19T04:49:46+00:00

What is the best way to sort an ArrayList<String[]> in Java? Where String[] is…

  • 0

What is the best way to sort an ArrayList<String[]> in Java?

Where String[] is…

String[] strAarray = new String[] { "abc", "abc", "abc", "abc", "abc", "abc", "abc" };

Now I want to sort the whole ArrayList by the 2nd value of String[] (at index 1). I need to loop through each and every String[] and then its child at index 1.

Any ideas?

Edit:


I have more descriptions. I am actually getting schools from some XML file and every node in XML has 7 attributes. Now I am creating an ArrayList of String[] which is holding those school nodes from XML and String[] strArray itself is holding attributes of particular node.

Now, the way I want to sort it is, it should sort according to State of school which is the 2nd attribute in XML and index 1 in String[] inside ArrayList.

I need to loop through each and every School first (node in XML, String[] in Java) and then I will have to filter State (State attribute in XML, String[1] in Java).

  • 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-19T04:49:47+00:00Added an answer on May 19, 2026 at 4:49 am

    Start with Collections.sort, the one that takes a custom Comparator. You’ll need to write a custom Comparator for this also.

    For instance, assuming you want to rely on the natural ordering of Strings as defined in their compareTo method:

    public static void main(String[] args) throws Exception {
            ArrayList<String[]> listOfStringArrays = new ArrayList<String[]>();
            listOfStringArrays.add(new String[] {"x","y","z"});
            listOfStringArrays.add(new String[] {"a","b","c"});
            listOfStringArrays.add(new String[] {"m","n","o"});
            Collections.sort(listOfStringArrays,new Comparator<String[]>() {
                public int compare(String[] strings, String[] otherStrings) {
                    return strings[1].compareTo(otherStrings[1]);
                }
            });
            for (String[] sa : listOfStringArrays) {
                System.out.println(Arrays.toString(sa));
            }
            /* prints out 
              [a, b, c]
              [m, n, o]
              [x, y, z]
            */ 
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the best way to sort the results of a sql query into
What's the best way in PHP to sort an array of arrays based on
What is the best way to verify/test that a text string is serialized to
What is the best/easiest way to sort a large list of words (10,000-20,000) by
I can't figure out what would be the best way to use Bucket Sort
What is the best way to sort a list of floats by their value,
Using C# what is the best way to sort a List numerically? my list
I'm looking for some advice/opinions on the best way to approach creating a sort-of-dynamic
What is the best way of creating an alphabetically sorted list in Python?
What is the best way to authorize all users to one single page in

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.