Leetcode Reverse Words in a String(Java)

Question:

Given an input string, reverse the string word by word.

For example,
Given s = “the sky is blue”,
return “blue is sky the”.

Update (2015-02-12):
For C programmers: Try to solve it in-place in O(1) space.

Clarification:
What constitutes a word?
A sequence of non-space characters constitutes a word.
Could the input string contain leading or trailing spaces?
Yes. However, your reversed string should not contain leading or trailing spaces.
How about multiple spaces between two words?
Reduce them to a single space in the reversed string.

Thinking:

We can use Java API to easily split the String into pieces with String[] strs = s.trim().split(“\s+”). We should to notice the “\s+” match one or many whitespaces.

Solution:

public String reverseWords(String s) {
    String[] strs = s.trim().split("\\s+");
    StringBuilder res = new StringBuilder();

    for (int i = strs.length-1; i >= 0; i--) 
        res.append(strs[i] + " ");

    return res.toString().trim();
}