java 检索文件 txt,如何执行从txt文件检索的Java代码?

I have a text file(example.txt) that contains this java code "System.out.println("Hello World!");

How can I execute this java code retrieved from the text file?

Thanks :x

解决方案

You can create class read from this file example.txt and write in tmp java file and access this tmp file from any java code

First create and Test.java class

public class Test{

public static void excute(){

}

}

int this class example.text strings will write in excute method te be executed

public class ExcuteStringCode {

/**

* @param args

* @throws IOException

*/

public static void main(String[] args) throws IOException {

// TODO Auto-generated method stub

try {

System.setProperty("java.home", "C:\\Program Files\\Java\\jdk1.7.0_21");

BufferedReader br=new BufferedReader(new FileReader("d:\\example.txt"));

PrintWriter writer=new PrintWriter("d:\\Test.java");

writer.write("public class Test{\n");

writer.write("public static void excute(){\n");

String reader="";

System.out.println("start");

while((reader=(br.readLine()))!=null){

writer.write(reader+"\n");

}

writer.write("}\n}");

br.close();

writer.close();

JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();

System.out.println(compiler);

int b=compiler.run(null, null, null,"d:\\Test.java");

Test testme=new Test();

testme.excute();

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

Then write javac ExcuteStringCode.java

Then write java ExcuteStringCode

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值