I write an application in Java SWT. I make "About" button and I would like to display content of a big text file after clicking it. I also know that there is simple way to do it in Swing:
JTextArea ta = new JTextArea(20,40);
try{
ta.read(new FileReader("Test.txt"),null);
}
catch(IOException ioe){
}
I want to do it in SWT to stay consistent. Could you please help me? Thanks in advance!