jsonicを使って文字配列を取得

こういうJSONデーターをJavaで読みこみたかったのだけど

[
["akJBetasのWavビューワー","/product/audio_wavviewer.html"],
["akjBetasのWavビューワー字幕作成の詳細","/product/audio_subtitle.html"],
["zoome(ズーミー)","/keyword/zoome.html"]
]

jsonicを使ったら簡単にできたよ。
http://jsonic.sourceforge.jp/

/*
* Copyright 2008 Aki
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package json;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

import net.arnx.jsonic.JSON;

import org.apache.commons.io.IOUtils;

public class JSONTest {

public static void main(String args) {
try {
String path="C:\\Users\\aki\\Desktop\\gwt-windows-1.4.61\\gwt-windows-1.4.61\\mygwt\\www\\jp.sourceforge.akjrcp.mygwt.Application\\jsons.txt";

String text=IOUtils.toString(new InputStreamReader(new FileInputStream(path),"UTF-8"));

String data
=jsonToStringArray(text);
for (int i = 0; i < data.length; i++) {
for (int j = 0; j < data[i].length; j++) {
System.out.println(data[i][j]);
}

}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}

public static String
jsonToStringArray(String text){
String ret
=null;
try {
ArrayList my=JSON.decode(text,ArrayList.class);
ret=new String[my.size()]
;
for (int i = 0; i < my.size(); i++) {
ret[i]=(String[]) ( (ArrayList)my.get(i) ).toArray(new String[0]);
}
} catch (Exception e) {
e.printStackTrace();
}

return ret;
}

}