2
我有一個文件名和用於顯示Word文件的組合列表。 下面的代碼將打開所選的文件在屏幕上, 但是,我想以只讀方式打開文件, 請人幫我如何以只讀模式打開SWT shell的word文檔
public class openDatafile
{
public void open_file(OleClientSite clientSite, OleFrame frame,String fname,String fpath)
{
String fileName=fname;
String filePath=fpath;
String fullpath=filePath+"/"+fileName;
if (fullpath != null) {
clientSite.dispose();
clientSite = new OleClientSite(frame, SWT.NONE, "Word.Document",new File(fullpath));
clientSite.doVerb(OLE.OLEIVERB_INPLACEACTIVATE);
}
frame.redraw();
}
}
請幫我做了以下內容: - 1 。打開文件以只讀模式 2.關閉已打開的文件
任何一個請幫我......