TextEditor相關操作

2021-05-22 10:11:35 字數 519 閱讀 4291

1)取得當前編輯器(geteditor())。

platformui.getworkbench().getactiveworkbenchwindow().getactivepage().getactiveeditor();

2)得到檔案的編輯器的方法:

public static ieditorpart findeditor(ifile file)                

}return null;}

3)取得選中文字。

(itextselection) geteditor().geteditorsite().getselectionprovider().getselection();

4)替換選中文字。

document.replace(offset, length, replacetext);

5)選中替換後的文字。

geteditor().geteditorsite().getselectionprovider().setselection(tsnew);

TextEditor的基本操作

part是是action中的ieidtorpart。如何獲得乙個未被texteditor開啟的檔案的內容 這個在做 選中檔案並對其中內容進行操作 這種功能時很有用,如下 1ifile file fileeditorinput workbench.getinstance getactiveworkbe...

mysql相關操作 mysql 相關操作

1 登入 mysql u root p 2 檢視當前有的資料庫 show databases 3 建立資料庫 create database 資料庫名 4 操作 使用 資料庫 use 資料庫名 5 檢視有哪些表 show tables 6 建立表 create table 表名 7 刪除表 drop...

mysql 的相關操作 mysql 相關操作

mysql u root p 回撤後輸入密碼 123456,進入mysql 資料庫簡單操作 1 建立資料庫 create database 資料庫名稱 2 檢視資料庫 show databases 3 刪除資料庫 drop database 資料庫名稱 4 開啟資料庫 use 資料庫名稱 資料表簡單...