代码不在eclipse中运行,但在命令窗口中运行

时间:2013-07-02 11:24:03

标签: java eclipse process runtime

import java.io.IOException;

public class Test1_Exec {
    public static void main(String[] args) throws IOException {
        Runtime run = Runtime.getRuntime();
        try {
            Process p = run.exec("java Test1");
        } catch (IOException e) {
            e.printStackTrace();
        } 
    }
}


import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class Test1 {
    public static void main(String[] args)
    {
        FileOutputStream fOut = null;
        try {
            fOut = new FileOutputStream("d:\\ppp\\Test1.txt");
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        try {
            fOut.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        System.out.println("invoked successfully");
    }
}

问题是如果我在Eclipse中运行Test1_Exec,则不会创建Test1.txt并且不会报告错误。但是如果我在命令窗口中键入“java Test1”,则会创建Test1.txt。 Test1_Exec.java和Test1.java位于同一个src文件夹中; Test1_Exec.class和Test1.class位于同一个bin文件夹中。那Eclipse有什么问题?我的Eclipse版本是开普勒(20130614-0229)。

2 个答案:

答案 0 :(得分:3)

bin文件夹放在classpath

Process p = run.exec("java -cp path/to/bin Test1");

目前,java正在项目目录中寻找Test1.class

答案 1 :(得分:0)

您是否需要在命令中提供测试1的完整路径? i.n:“java c:\ code \ Test 1”?