所以我做了一点搜索,谷歌和StackOverflow搜索没有提出任何关于这个问题。我以为我刚才发现了一些东西,但它只是想知道如何用Java打开.exe。
无论如何,标题说我想知道如何从Java程序中编译和保存Java文件,然后打开我刚刚保存的同一个Java文件。
所以,对此,任何帮助都将非常感谢。
编辑:好的,我所说的是让Java文件执行。
我的想法是使用遗传算法作为基础和我必须做的大量学习。编写可以在给定参数内创建程序的程序。然后这将自我发起并继续改善自身的循环。基本上是自我改进的代码。目前我有遗传算法的基本代码,我只是想了解它是如何工作的,因为它是我发现的教程。是的,我知道这可能是不可能的,但我喜欢这个挑战,它给了我一个目标,并且在我看来有趣的理由学习Java,就像我之前尝试过的那样但是我没有走得太远。
无论如何,对于任何困惑都很抱歉。Edit2:所以这基本上是正在使用的代码,它已被略微修改并搞砸了,但目前看看我能做些什么:http://www.theprojectspot.com/tutorial-post/creating-a-genetic-algorithm-for-beginners/3
答案 0 :(得分:2)
答案 1 :(得分:1)
编辑完成后,我了解到您的问题是:
如何编写一个足够聪明的java程序来创建更聪明的java程序?
这将是一项艰巨的任务。如果您拥有必要的人工智能解决方案,那么您需要一个技术解决方案来了解如何在运行时动态创建新类。我可以为此提出两个选择。
答案 2 :(得分:0)
您可以使用http://commons.apache.org/proper/commons-exec/从Java代码启动进程。你应该调用与命令行相同的东西。 (javac -cp...
然后java -cp.. someclass
)
答案 3 :(得分:0)
import java.io.*;
public class MyProg
{
public static void main(String[] args)
throws IOException, InterruptedException
{
String fname = "Prog1.java";
BufferedWriter bw;
try{
bw = new BufferedWriter(
new FileWriter(fname)
);
}
catch (IOException e) {
System.out.println("Cannot open " + fname + "!");
return;
}
final String NL = System.getProperty("line.separator");
bw.write("public class Prog1{" + NL
+ "\tpublic static void main(String[] args) {" + NL
+ "\t\tSystem.out.println(\"hello world\");" + NL
+ "\t}" + NL
+ "}" + NL
);
bw.close();
BufferedReader br;
try {
br = new BufferedReader(
new FileReader(fname)
);
}
catch (FileNotFoundException e) {
System.out.println(fname + " not found!");
return;
}
String line;
while( (line = br.readLine()) != null )
{
System.out.println(line);
}
Process p1 = new ProcessBuilder(
"javac", "Prog1.java"
).start();
int error = p1.waitFor();
System.out.println("p1: " + error);
/*
Process p2 = new ProcessBuilder(
"java", "-cp . Prog1"
).start();
error = p2.waitFor();
System.out.println("p2: " + error);
*/
FileInputStream fin;
try {
fin = new FileInputStream(fname);
}
catch (FileNotFoundException e) {
System.out.println(fname + " not found!");
return;
}
int abyte;
while((abyte = fin.read()) != -1)
{
System.out.println(abyte);
}
fin.close();
}
}
--output:--
public class Prog1{
public static void main(String[] args) {
System.out.println("hello world");
}
}
p1: 0
112
117
98
108
105
99
...
...
125
10