/ Published in: Java

Reverses a Java string array, taken from: http://www.java-examples.com/java-reverse-string-array-example
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* Java Reverse String Array Example This Java Reverse String Array example shows how to find sort an array of String in Java using Arrays and Collections classes. */ import java.util.Collections; import java.util.List; import java.util.Arrays; public class ReverseStringArrayExample { //String array /* * There are basically two methods, one is to use temporary array and * manually loop through the elements of an Array and swap them or to use * Arrays and Collections classes. * * This example uses the second approach i.e. without temp variable. * */ //first create a list from String array //next, reverse the list using Collections.reverse method //next, convert the list back to String array //print the reversed String array for(int i=0; i < strDays.length; i++){ } } } /* Output of above given Java Reverse String Array example would be String array reversed Wednesday Tuesday Monday Sunday */
URL: http://www.java-examples.com/java-reverse-string-array-example
Comments
