我想从(tortoise)svn文件夹中检查我的代码到其他工作目录。
Build.xml如下:
E:\ant-for-example>ant
Buildfile: E:\ant-for-example\build.xml
checkoutThis:
[svn] <Checkout> started ...
运行build.xml时显示:
txt1.addTextChangedListener(new TextWatcher() {
public void onTextChanged(CharSequence s, int start,
int before, int count) {
}
public void beforeTextChanged(CharSequence s, int start,
int count, int after) {
}
public void afterTextChanged(Editable s) {
String value = txt1.getText().toString();
txt1.setText(String.valueOf(Utilities
.roundOneDecimals(Double.parseDouble(value))));
}
});
但它不会将文件复制到文件夹中。
答案 0 :(得分:0)
尝试在“taskdef”之前添加此内容
<taskdef name="svn" classname="org.tigris.subversion.svnant.SvnTask" classpathref="project.classpath"/>