• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

动态编译java程序实例

发布: 2008-7-01 16:33 | 作者: 网络转载 | 来源: 本站原创 | 查看: 114次 | 进入软件测试论坛讨论

领测软件测试网
import java.io.*;
import java.lang.reflect.Method;
import com.sun.tools.javac.*;

public class RuntimeCode {

private static Main javac = new Main();
/**等待用戶輸入JavaCode,然後編譯、執行*/
public static void main(String[] args) throws Exception {
String code = "";
DataInputStream bd = new DataInputStream(System.in);
byte[] brray= new byte[200];
int i = bd.read(brray);
code = new String(brray,0,i);
run(compile(code));
System.out.print(code);

}
/**編譯JavaCode,返回暫存檔案物件*/
private synchronized static File compile(String code) throws Exception {
File file;
//在用戶當前文件目錄創建一個臨時代碼文件
file = File.createTempFile("JavaRuntime", ".java", new File(System.getProperty("user.dir")));
System.out.println(System.getProperty("user.dir"));
//當虛擬機退出時,刪除此臨時java原始檔案
//file.deleteOnExit();
//獲得檔案名和類名字
String filename = file.getName();
String classname = getClassName(filename);
//將代碼輸出到文件
PrintWriter out = new PrintWriter(new FileOutputStream(file));
// out.println("/**");
out.write("class "+classname+"{"+"public static void main(String[] args)"+"{");
out.write(code);
out.write("}}");
//關閉文件流
out.flush();
out.close();
String[] args = new String[] { "-d", System.getProperty("user.dir"),filename };
//返回編譯的狀態代碼
int status = javac.compile(args);
System.out.println(status);
return file;
}
//運行程序
private static synchronized void run(File file) throws Exception {
String filename = file.getName();
String classname = getClassName(filename);
//當虛擬機退出時,刪除此臨時編譯的類文件
new File(file.getParent(),classname + ".class").deleteOnExit();
try {
Class cls = Class.forName(classname);
//映射main方法
Method main = cls.getMethod("main", new Class[] { String[].class });
//執行main方法
main.invoke(null, new Object[] { new String[0] });
} catch (SecurityException se) {
}
}

private static void debug(String msg) {
System.err.println(msg);
}

private static String getClassName(String filename) {
return filename.substring(0, filename.length() - 5);
}
}

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/

TAG: java JAVA Java 编译 程序 动态 实例


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网