Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前在命令行中输入:
javac *.java && java NeuralNetApp > xorMomentumTest.txt
这会擦除xorMomentumTest.txt中的所有内容,然后用程序的输出填充它。
我想要它做的是将输出添加到xorMomentumTest.txt的末尾,而不是替换它的内容,这样我就可以多次运行程序并保留所有输出。
尝试这个:
javac *.java && java NeuralNetApp >> xorMomentumTest.txt
这更像是一个操作系统问题,而不是 Java 问题。我假设你有一个 unix 或 linux 操作系统。