자바 동적 컴 파일 (eval)

일부 계란 통 증 의 수요 로 인해 다른 개발 업 체 들 이 해당 자바 코드 를 사용 하여 효 과 를 실현 해 야 하기 때문에 여 기 는 동적 컴 파일 이 필요 합 니 다.
    여기 서 인터넷 에서 자 료 를 찾 아 보고 출처 를 잊 어 버 리 고 스스로 정리 하고 최적화 시 켜 js 의 eval 효 과 를 실현 했다.
/**
 * @author onedear
 *
 */
public class Compiler {
	private static boolean hasFirstInit = false;
	public static String getClassCode (String initParam) {
		StringBuffer sb = new StringBuffer();
		sb.append("public class ETEvaler {")
			.append("public Object eval() {")
			.append(initParam)
			.append("}")
			.append("}");
		return sb.toString() ; 
	}
	
	
	
	public static Object eval(String sourceCode) 
			throws SecurityException, NoSuchMethodException, IOException, 
			ClassNotFoundException, IllegalArgumentException, 
			IllegalAccessException, InvocationTargetException, InstantiationException {
		URLClassLoader classLoader = new URLClassLoader(
				new URL[] { new File(System.getProperty("java.io.tmpdir")).toURI().toURL() });
		Class clazz = null ; 
		boolean hasInit = true ; 
		 try{ 
			 clazz = classLoader.loadClass("ETEvaler");
		 } catch (ClassNotFoundException e) {
			 //        ,     
			 hasInit = false ; 
		 }
		 if(!hasInit || !hasFirstInit) {
			 hasFirstInit = true;
			 String classCode = getClassCode(sourceCode);
			JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
	        if(compiler == null)
	        	throw new IllegalArgumentException("  java       ,           tools.jar( :JDK 6     ,JRE 6     )");
	        DiagnosticCollector diagnostics = new DiagnosticCollector();
	        StandardJavaFileManager fileManager = compiler.getStandardFileManager(diagnostics, null, null);
	        String fileName = "ETEvaler.java";
	        File file = new File(System.getProperty("java.io.tmpdir"), fileName);
	        PrintWriter pw = new PrintWriter(file);
	        pw.println(classCode);
	        pw.close();
	        Iterable compilationUnits = fileManager.getJavaFileObjectsFromStrings(Arrays.asList(file
	                        .getAbsolutePath()));
	        JavaCompiler.CompilationTask task = compiler.getTask(null,
	                fileManager, diagnostics, null, null, compilationUnits);
	        boolean success = task.call();
	        fileManager.close();
		 }
		//      ,     eval       
		classLoader = new URLClassLoader(
					new URL[] { new File(System.getProperty("java.io.tmpdir")).toURI().toURL() });
        clazz = classLoader.loadClass("ETEvaler");
        Method method = clazz.getDeclaredMethod("eval");
        Object value = method.invoke(clazz.newInstance() );
        return value ; 
		
	}
	
	
}

 호출 방식 이 상당히 간단 하 다.
 

Compiler.eval("System.out.println(\"e1111112222222\");");

String returnValue = Compiler.eval("System.out.println(\"e1111112222222\");return \"returnValue\";");
 
 

좋은 웹페이지 즐겨찾기