I have a sentence Programcreek is a very huge and useful website.
After parsing I convert it into following String format:
(TOP (S (NP (NN Programcreek)) (VP (VBZ is) (NP (DT a) (ADJP (RB very) (JJ huge) (CC and) (JJ useful)))) (. website.)))
I want to convert this parsed sentence into a tree as it appears in the diagram. How to achieve this? I'm new to Java, so I'm not aware if there is a standard way of doing it? Any help/suggestion is welcome. Thanks