0
我開始使用Eclipse SWT,我有以下問題。Eclipse SWT Shell到JInternalFrame
下一課將打開一個窗口,其中包含「archivo」變量中引用的單詞文檔。
import java.io.File;
import javax.swing.JInternalFrame;
import org.eclipse.swt.SWT;
import org.eclipse.swt.SWTError;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.ole.win32.OleClientSite;
import org.eclipse.swt.ole.win32.OleFrame;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class ArchivoMSOffice {
protected static OleClientSite clientSite;
protected static OleFrame frame;
public ArchivoMSOffice() {
}
public void run(archivo) {
Display display = new Display();
final Shell shell = new Shell(display);
shell.setText(archivo);
shell.setLayout(new FillLayout());
try {
frame = new OleFrame(shell, SWT.NONE);
//esto abre un documento existente
clientSite = new OleClientSite(frame, SWT.NULL, new File(archivo));
} catch (SWTError e) {
System.out.println("Unable to open activeX control");
display.dispose();
return;
}
shell.setSize(800, 600);
shell.open();//this open de Window
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
我該怎麼做才能使該窗口成爲JInternalFrame?
感謝您的幫助。 問候!