<tfoot id='fyfq0'></tfoot>
<legend id='fyfq0'><style id='fyfq0'><dir id='fyfq0'><q id='fyfq0'></q></dir></style></legend>

          <bdo id='fyfq0'></bdo><ul id='fyfq0'></ul>
        <i id='fyfq0'><tr id='fyfq0'><dt id='fyfq0'><q id='fyfq0'><span id='fyfq0'><b id='fyfq0'><form id='fyfq0'><ins id='fyfq0'></ins><ul id='fyfq0'></ul><sub id='fyfq0'></sub></form><legend id='fyfq0'></legend><bdo id='fyfq0'><pre id='fyfq0'><center id='fyfq0'></center></pre></bdo></b><th id='fyfq0'></th></span></q></dt></tr></i><div id='fyfq0'><tfoot id='fyfq0'></tfoot><dl id='fyfq0'><fieldset id='fyfq0'></fieldset></dl></div>

        <small id='fyfq0'></small><noframes id='fyfq0'>

        Eclipse 插件从当前打开的文件中获取代码

        时间:2023-08-23

      1. <small id='2pTiw'></small><noframes id='2pTiw'>

        1. <i id='2pTiw'><tr id='2pTiw'><dt id='2pTiw'><q id='2pTiw'><span id='2pTiw'><b id='2pTiw'><form id='2pTiw'><ins id='2pTiw'></ins><ul id='2pTiw'></ul><sub id='2pTiw'></sub></form><legend id='2pTiw'></legend><bdo id='2pTiw'><pre id='2pTiw'><center id='2pTiw'></center></pre></bdo></b><th id='2pTiw'></th></span></q></dt></tr></i><div id='2pTiw'><tfoot id='2pTiw'></tfoot><dl id='2pTiw'><fieldset id='2pTiw'></fieldset></dl></div>
          • <bdo id='2pTiw'></bdo><ul id='2pTiw'></ul>
              <legend id='2pTiw'><style id='2pTiw'><dir id='2pTiw'><q id='2pTiw'></q></dir></style></legend>
                <tbody id='2pTiw'></tbody>

                <tfoot id='2pTiw'></tfoot>

                1. 本文介绍了Eclipse 插件从当前打开的文件中获取代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何从 Eclipse 中以 StringString[] 返回的当前打开文件获取代码?我正在制作的插件需要这个.

                  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 RCP:目标平台 - Eclipse 与 Equinox? 下一篇:尝试运行 Eclipse 产品时出现异常

                  相关文章

                    1. <tfoot id='HI1s8'></tfoot>

                      <small id='HI1s8'></small><noframes id='HI1s8'>

                    2. <legend id='HI1s8'><style id='HI1s8'><dir id='HI1s8'><q id='HI1s8'></q></dir></style></legend>

                    3. <i id='HI1s8'><tr id='HI1s8'><dt id='HI1s8'><q id='HI1s8'><span id='HI1s8'><b id='HI1s8'><form id='HI1s8'><ins id='HI1s8'></ins><ul id='HI1s8'></ul><sub id='HI1s8'></sub></form><legend id='HI1s8'></legend><bdo id='HI1s8'><pre id='HI1s8'><center id='HI1s8'></center></pre></bdo></b><th id='HI1s8'></th></span></q></dt></tr></i><div id='HI1s8'><tfoot id='HI1s8'></tfoot><dl id='HI1s8'><fieldset id='HI1s8'></fieldset></dl></div>

                        <bdo id='HI1s8'></bdo><ul id='HI1s8'></ul>