Hey, how would I go about displaying a very big am...
# tornadofx
d
Hey, how would I go about displaying a very big amount of text? Minimum 200k lines.
s
Might be a candidate for the Flowless library.
b
or better this one https://github.com/FXMisc/RichTextFX. But all the same, it is better to store large text files in chunks in memory.
s
If you want to be able to display and edit richtext then RichTextFX is probably your best (and only?) option. I use it in my program. Note that RichTextFX uses the Flowless library itself.
d
Yeah, thanks, I just went with copying the text to the users clipboard at the end.