Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.text.Collator;
import java.util.Arrays;

public class Main {
    public static void main(String args[]) {

        String[] myArray = new String[] { "A", "B", "b" };
        Arrays.sort(myArray, Collator.getInstance());

        System.out.println(Arrays.toString(myArray));
    }
}
//[A, b, B]