I have a BuilderString that contain the same result as in this link:
https://hadoop.apache.org/docs/current/hadoop-project-dist/
I'm looking to extract the values of the ``. And return a list of String that contain all the files name.
My code is:
try {
    HttpURLConnection conHttp = (HttpURLConnection) url.openConnection();
    conHttp.setRequestMethod("GET");
    conHttp.setDoInput(true);
    InputStream in = conHttp.getInputStream();
    int ch;
    StringBuilder sb = new StringBuilder();
} catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
How can I parse JSON to take all the values of pathSuffix and return a list of string that contains the file names ?
Could you please give me a suggestion ? Thanks
 
     
     
     
    