From a TextEditor, you can get the document, document provider, and selection. That will give you access to the current cursor offset.
ITextEditor editor = (ITextEditor) editorPart
.getAdapter(ITextEditor.class);
IDocumentProvider provider = editor.getDocumentProvider();
IDocument document = provider.getDocument(editorPart
.getEditorInput());
ITextSelection textSelection = (ITextSelection) editorPart
.getSite().getSelectionProvider().getSelection();
int offset = textSelection.getOffset();
int lineNumber = document.getLineOfOffset(offset);
IDocument
provides other methods to get the starts of lines (you can calculate the column from that).
For more information see http://wiki.eclipse.org/The_Official_Eclipse_FAQs#Text_Editors
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…