以下是使用Ant编辑/追加数据到文本文件的Java代码示例: ```java import org.apache.tools.ant.BuildException; import org.apache.tools.ant.Project; import org.apache.tools.ant.taskdefs.Replace; import org.apache.tools.ant.types.FileSet; import java.io.File; public class AntFileEditor { public static void main(String[] args) { String filePath = "path/to/file.txt"; String textToAppend = "This is some text to append."; // Create a new Ant project Project project = new Project(); // Create a new Replace task Replace replace = new Replace(); replace.setProject(project); // Set the file to edit replace.setFile(new File(filePath)); // Set the text to append replace.setToken("\n"); replace.setValue("\n" + textToAppend); // Execute the task try { replace.execute(); } catch (BuildException e) { e.printStackTrace(); } } } ``` 这个示例使用Ant的Replace任务来编辑/追加数据到文本文件。它将指定的文本文件作为输入,并在文件末尾追加指定的文本。在这个示例中,我们将文本追加到文件的新行之前。您可以根据需要更改此行为。