本文介绍了如何将 Ant 中的相对路径转换为绝对路径?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将相对路径转换为绝对路径.
I would like to convert a relative path to an absolute path.
这是怎么做到的?
推荐答案
property task 将相对路径转换为绝对路径.
The location attribute on the property task will convert relative paths to absolute.
<property name="absolute.path" location="${relative.path}"/>
这篇关于如何将 Ant 中的相对路径转换为绝对路径?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!