0
我想打印目錄中的文件的名稱,但只有其中一個顯示。 so如何在SWT styledtext中顯示完整的數組內容? 還有誰可以告訴我一些SWT的在線教程?如何在SWT styledtext中顯示完整的數組內容?
package gui;
import java.io.*;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.ControlAdapter;
import org.eclipse.swt.events.ControlEvent;
import org.eclipse.swt.custom.StyledText;
public class FileEditor {
/**
* Launch the application.
* @param args
*/
public static void main(String[] args) {
Display display = Display.getDefault();
Shell shell = new Shell();
shell.setSize(450, 300);
shell.setText("SWT Application");
Button btnShow = new Button(shell, SWT.NONE);
btnShow.addControlListener(new ControlAdapter() {
@Override
public void controlMoved(ControlEvent e) {
}
});
StyledText styledText = new StyledText(shell, SWT.BORDER | SWT.FULL_SELECTION);
styledText.setBounds(154, 36, 256, 191);
btnShow.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
File newdir = new File("d:\\Softwares");
String[] list= newdir.list();
if(newdir.isDirectory())
{
for(int i=1;i<list.length;i++)
{
styledText.setText(list[i]);
}
}
}
});
btnShow.setBounds(23, 146, 75, 25);
btnShow.setText("Show");
shell.open();
shell.layout();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
}
}
謝謝你,我想同樣的事情,但不知道方法。 –