org.apache.tools.ant.taskdefs.Execute.setWorkingDirectory()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(7.3k)|赞(0)|评价(0)|浏览(161)

本文整理了Java中org.apache.tools.ant.taskdefs.Execute.setWorkingDirectory()方法的一些代码示例,展示了Execute.setWorkingDirectory()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Execute.setWorkingDirectory()方法的具体详情如下:
包路径:org.apache.tools.ant.taskdefs.Execute
类名称:Execute
方法名:setWorkingDirectory

Execute.setWorkingDirectory介绍

[英]Sets the working directory of the process to execute.

This is emulated using the antRun scripts unless the OS is Windows NT in which case a cmd.exe is spawned, or MRJ and setting user.dir works, or JDK 1.3 and there is official support in java.lang.Runtime.
[中]设置要执行的进程的工作目录。
这是使用antRun脚本模拟的,除非操作系统是Windows NT,在这种情况下是cmd。生成exe或MRJ并设置用户。dir工作,或jdk1.3,并且在java中有官方支持。lang.Runtime。

代码示例

代码示例来源:origin: org.apache.ant/ant

/**
 * Set the working dir of the new process.
 * @param exe executable.
 * @throws BuildException if the dir doesn't exist.
 */
private void setupWorkingDir(Execute exe) {
  if (dir == null) {
    dir = getProject().getBaseDir();
  } else if (!dir.isDirectory()) {
    throw new BuildException(dir.getAbsolutePath()
                 + " is not a valid directory",
                 getLocation());
  }
  exe.setWorkingDirectory(dir);
}

代码示例来源:origin: kaaproject/kaa

private static void executeCommand(File workingDir, String... command) throws IOException {
 Execute exec = new Execute();
 if (workingDir == null) {
  String homeDir = System.getProperty("user.home");
  if (homeDir != null) {
   workingDir = new File(homeDir);
  }
 }
 if (workingDir != null) {
  exec.setWorkingDirectory(workingDir);
 }
 exec.setCommandline(command);
 exec.execute();
 if (exec.isFailure()) {
  throw new RuntimeException("Process returned bad exit value: " + exec.getExitValue());
 }
}

代码示例来源:origin: org.apache.ant/ant

Execute exe = new Execute(jop);
exe.setAntRun(project);
exe.setWorkingDirectory(project.getBaseDir());
exe.setCommandline(commandArray);
exe.execute();

代码示例来源:origin: org.apache.ant/ant

exe.setWorkingDirectory(project.getBaseDir());
exe.setCommandline(commandArray);
exe.execute();

代码示例来源:origin: org.apache.ant/ant

/**
 * Run the command.
 * @param cmd the command line to use.
 * @param out the output stream handler to use.
 * @return the exit code of the command.
 */
protected int runCmd(Commandline cmd, ExecuteStreamHandler out) {
  try {
    Project aProj = getProject();
    Execute exe = new Execute(out);
    exe.setAntRun(aProj);
    exe.setWorkingDirectory(aProj.getBaseDir());
    exe.setCommandline(cmd.getCommandline());
    return exe.execute();
  } catch (IOException e) {
    String msg = "Failed executing: " + cmd.toString()
      + ". Exception: " + e.getMessage();
    throw new BuildException(msg, getLocation());
  }
}

代码示例来源:origin: org.apache.ant/ant

/**
 * Run the command.
 * @param cmd the command line
 * @param handler an execute stream handler
 * @return the exit status of the command
 */
protected int run(Commandline cmd, ExecuteStreamHandler handler) {
  try {
    Execute exe = new Execute(handler);
    exe.setAntRun(getProject());
    exe.setWorkingDirectory(getProject().getBaseDir());
    exe.setCommandline(cmd.getCommandline());
    return exe.execute();
  } catch (IOException e) {
    throw new BuildException(e, getLocation());
  }
}

代码示例来源:origin: org.apache.ant/ant

exe.setWorkingDirectory(getProject().getBaseDir());
} else {
  if (!directory.isDirectory()) {
                 getLocation());
  exe.setWorkingDirectory(directory);

代码示例来源:origin: org.testng/testng

if(m_workingDir != null) {
 if(m_workingDir.exists() && m_workingDir.isDirectory()) {
  execute.setWorkingDirectory(m_workingDir);

代码示例来源:origin: apache/groovy

private void runForked(String[] commandLine) {
  final Execute executor = new Execute();
  executor.setAntRun(getProject());
  executor.setWorkingDirectory(getProject().getBaseDir());
  executor.setCommandline(commandLine);
  try {
    executor.execute();
  } catch (final IOException ioe) {
    throw new BuildException("Error running forked groovyc.", ioe);
  }
  final int returnCode = executor.getExitValue();
  if (returnCode != 0) {
    taskSuccess = false;
    if (errorProperty != null) {
      getProject().setNewProperty(errorProperty, "true");
    }
    if (failOnError) {
      throw new BuildException("Forked groovyc returned error code: " + returnCode);
    } else {
      log.error("Forked groovyc returned error code: " + returnCode);
    }
  }
}

代码示例来源:origin: org.apache.ant/ant

/**
   * Get the execute object.
   * @param toExecute the command line to use.
   * @param streamhandler the stream handler to use.
   * @return the execute object.
   * @since Ant 1.6.3
   */
  protected Execute getExecute(Commandline toExecute,
                 ExecuteStreamHandler streamhandler) {
    Execute exe = new Execute(streamhandler, null);

    exe.setAntRun(getProject());
    if (topDir == null) {
      topDir = getProject().getBaseDir();
    }
    exe.setWorkingDirectory(topDir);

    exe.setCommandline(toExecute.getCommandline());
    return exe;
  }
}

代码示例来源:origin: org.apache.ant/ant

/**
 * Execute the given command are return success or failure
 * @param cmd command line to execute
 * @return the exit status of the subprocess or <code>INVALID</code>
 */
protected int run(Commandline cmd) {
  try {
    Project aProj = getProject();
    Execute exe = new Execute(
      new LogStreamHandler(this, Project.MSG_INFO, Project.MSG_WARN));
    exe.setAntRun(aProj);
    exe.setWorkingDirectory(aProj.getBaseDir());
    exe.setCommandline(cmd.getCommandline());
    return exe.execute();
  } catch (IOException e) {
    throw new BuildException(e, getLocation());
  }
}

代码示例来源:origin: org.apache.ant/ant

exe.setWorkingDirectory(dest);
exe.setCommandline(toExecute.getCommandline());
exe.setEnvironment(env.getVariables());

代码示例来源:origin: cbeust/testng

if (m_workingDir != null) {
 if (m_workingDir.exists() && m_workingDir.isDirectory()) {
  execute.setWorkingDirectory(m_workingDir);
 } else {
  log("Ignoring invalid working directory : " + m_workingDir, Project.MSG_WARN);

代码示例来源:origin: org.apache.ant/ant

/**
 * Execute the created command line.
 *
 * @param  cmd            The command line to run.
 * @return                int the exit code.
 * @throws BuildException if something goes wrong
 */
protected int run(Commandline cmd) {
  try {
    Execute exe = new Execute(new LogStreamHandler(this,
        Project.MSG_INFO,
        Project.MSG_WARN));
    exe.setAntRun(getProject());
    exe.setWorkingDirectory(getProject().getBaseDir());
    exe.setCommandline(cmd.getCommandline());
    exe.setVMLauncher(false);  // Use the OS VM launcher so we get environment variables
    return exe.execute();
  } catch (java.io.IOException e) {
    throw new BuildException(e, getLocation());
  }
}

代码示例来源:origin: org.apache.ant/ant

exe.setWorkingDirectory(getProject().getBaseDir());
exe.setCommandline(cmd.getCommandline());

代码示例来源:origin: org.apache.ant/ant

Project.MSG_WARN));
exe.setAntRun(project);
exe.setWorkingDirectory(project.getBaseDir());
exe.setCommandline(args);
exe.execute();

代码示例来源:origin: org.apache.ant/ant

Project.MSG_WARN));
exe.setAntRun(project);
exe.setWorkingDirectory(project.getBaseDir());
exe.setCommandline(args);
exe.execute();

代码示例来源:origin: org.apache.ant/ant

exe.setWorkingDirectory(null);
try {
  exe.setCommandline(toExecute.getCommandline());

代码示例来源:origin: org.apache.ant/ant

Project project = getTask().getProject();
execTask.setAntRun(project);
execTask.setWorkingDirectory(project.getBaseDir());

代码示例来源:origin: org.apache.ant/ant

/**
 * Create an Execute instance with the correct working directory set.
 *
 * @return an instance of the Execute class.
 *
 * @throws BuildException under unknown circumstances.
 */
protected Execute prepareExec() throws BuildException {
  // default directory to the project's base directory
  if (dir == null) {
    dir = getProject().getBaseDir();
  }
  if (redirectorElement != null) {
    redirectorElement.configure(redirector);
  }
  Execute exe = new Execute(createHandler(), createWatchdog());
  exe.setAntRun(getProject());
  exe.setWorkingDirectory(dir);
  exe.setVMLauncher(vmLauncher);
  String[] environment = env.getVariables();
  if (environment != null) {
    for (String variable : environment) {
      log("Setting environment variable: " + variable,
          Project.MSG_VERBOSE);
    }
  }
  exe.setNewenvironment(newEnvironment);
  exe.setEnvironment(environment);
  return exe;
}

相关文章