1

プロジェクト/ワークスペースでクラス (smcho.Hello) を操作するための Eclipse プラグイン コードがあります。CompilationUnit を作成し、それにいくつかの変更を加えることはできましたが、2 つのバージョンの違いを確認するには、結果を別のファイルに保存する必要があります。

これは、CompilationUnit を取得するコードです。

IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
IProject project = root.getProject("Hello");
project.open(null);
IJavaProject javaProject = JavaCore.create(project);
IType lwType = javaProject.findType("smcho.Hello");
org.eclipse.jdt.core.ICompilationUnit lwCompilationUnit = lwType.getCompilationUnit();
final ASTParser parser = ASTParser.newParser(AST.JLS3); 
parser.setKind(ASTParser.K_COMPILATION_UNIT);
parser.setSource(lwCompilationUnit);
parser.setResolveBindings(true); // we need bindings later on
CompilationUnit unit = (CompilationUnit) parser.createAST(null /* IProgressMonitor */); 
// modify the unit AST node

この変更されたユニットを新しいファイルに保存するにはどうすればよいですか?

4

2 に答える 2

5

これには を使用できますASTRewriter

// get the ast rewriter
final ASTRewrite rewriter = ASTRewrite.create(ast);
// get the current document source
final Document document = new Document(unit.getSource());
// compute the edits you have made to the compilation unit
final TextEdit edits = rewriter.rewriteAST();
// apply the edits to the document
edits.apply(document);
// get the new source
String newSource = document.get();
// now write this source to some other file.

以下のリンクを確認してください。これにより、AST の変更をファイルに書き込む方法についての洞察が得られます。

http://www.eclipse.org/articles/article.php?file=Article-JavaCodeManipulation_AST/index.html

更新: これは私がファイルに書き込む方法です:

File file = new File(destFile);
FileUtils.writeStringToFile(File file, String newSource) 
于 2012-10-14T06:44:07.610 に答える
1

これは、書き換えられた ast を別のファイルに保存するために使用できるコードです。もっと簡単な方法があるのではないかと思います。

Document document = new Document(lwCompilationUnit.getSource());
rewrite.rewriteAST().apply(document);
String source = document.get();
String destFile = "...";
Helper.toFile(source, destFile);

public static void toFile(String source, String outputPath)
{
   try{
          // Create file 
          FileWriter fstream = new FileWriter(outputPath);
          BufferedWriter out = new BufferedWriter(fstream);
          out.write(source);
          //Close the output stream
          out.close();
    }catch (Exception e){//Catch exception if any
          System.err.println("Error: " + e.getMessage());
    }
}
于 2012-10-14T16:59:45.197 に答える