You are viewing a single comment's thread from:RE: SteemJ Dev Diary #9 (14.01.2018)View the full contextedicted (82)in #utopian-io • 7 years ago Is there a method that returns the text inside of a comment/post?
Are you referring to getting the body of a post/comment/discussion?
steemJ.getContent
List<Discussion> discussions = steemJ.getContentReplies(account, entry.getComment().getPermlink());
playersScan: for (Discussion discussion : discussions) {
String body = discussion.getBody();