Eclipse Plugin Get Code from Current Open File(Eclipse 插件从当前打开的文件中获取代码)
问题描述
如何从 Eclipse 中以 String 或 String[] 返回的当前打开文件获取代码?我正在制作的插件需要这个.
How can I get the code from the current open file in Eclipse returned in a String or String[]? I need this for a plugin I'm making.
假设我有以下代码:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
如果我打开了 HelloWorld.java,如何在 String[] 中返回该代码?String[] 将包含:
If I have HelloWorld.java open, how do I get that code returned in a String[]? The String[] would contain:
- 公共类 HelloWorld {"
- "public static void main(String[] args) {"
- "System.out.println("你好,世界!");"
- }"
- }"
推荐答案
要获取当前编辑文件的内容,您可以这样做:
To get the currently edited file's content you can do something like that:
IWorkbenchPart workbenchPart = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActivePart();
IFile file = (IFile) workbenchPart.getSite().getPage().getActiveEditor().getEditorInput().getAdapter(IFile.class);
if (file == null) throw new FileNotFoundException();
String content = IOUtils.toString(file.getContents(), file.getCharset());
这篇关于Eclipse 插件从当前打开的文件中获取代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Eclipse 插件从当前打开的文件中获取代码
基础教程推荐
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
