如何在jsp页面中获取eclipse项目的路径

时间:2012-07-11 20:13:04

标签: java jsp servlets maven scriptlet

如何获取当前项目的路径:它是使用maven原型创建的动态Web应用程序。

我想在scriptlet代码中检索jsp页面中的路径,我使用了不同的代码,但我总是得到eclipse的路径(C:\ Users \ Amira \ Desktop \ eclipse \ eclipse) 或tomcat上的Web应用程序的路径((C:\ software \ apache-tomcat-7.0.28 \ apache-tomcat-7.0.28 \ wtpwebapps \ TestProjectUI)

但我想在我的工作区中找到项目的路径:C:\ Users \ Amira \ junoWorkspace \ TestProjectUI

任何想法都将受到赞赏 谢谢

这是我的jsp:

<body>

<%
if (request.getParameter("btnSubmit") != null) //btnSubmit is the name of your button,not id of that button.
{

    String className = request.getParameter("testclass");
    System.out.println(className);
    String[] command = {"CMD", "/C", "mvn -Dtest=" + className + " test"};
    ProcessBuilder probuilder = new ProcessBuilder(command);

    //You can set up your work directory
    probuilder.directory(new File("C:\\Users\\Amira\\junoWorkspace\\TestProjectUI"));

    Process process = probuilder.start();

    //Read out dir output
    java.io.InputStream is = process.getInputStream();
    InputStreamReader isr = new InputStreamReader(is);
    BufferedReader br = new BufferedReader(isr);
    String line;
    System.out.printf("Output of running %s is:\n", Arrays.toString(command));
    while ((line = br.readLine()) != null) {
        System.out.println(line);
    }

    //Wait to get exit value
    try {
        int exitValue = process.waitFor();
        System.out.println("\n\nExit Value is " + exitValue);
    } catch (InterruptedException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}
%>

        <html:file properties="tonFichier" name="tonForm"/>


        <p>   Please specify a Test :<br>
            <input type="file" name="testclass" size="40" >
        </p>
        <div>
            <input type="submit" id="btnSubmit" name="btnSubmit" value="Execute Test"/>

        </div>
    </form>
</body>

1 个答案:

答案 0 :(得分:1)

每当我遇到这样的问题时,我会打印出所有System.getProperties()并查看是否有一个有我想要的信息。这可能是您在这里可以做的最好的,因为Eclipse提供的唯一信息将来自一个属性。如果您没有其中一个提供的属性中的信息,您可以在启动配置中自行提供,您可以在启动配置中使用workspace_loc变量。