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.
我正在尝试从执行 junit 测试用例后生成的 txt 格式报告生成 HTML 报告。在正确位置使用 build.xml 运行 ant 命令时,我收到以下错误消息
java.lang.OutOfMemoryError: Java heap space
ANT_OPTS=-Xmx1024m我尝试通过命令增加堆空间。
ANT_OPTS=-Xmx1024m
仍然面临同样的问题。
在启动 Ant 之前使用export JAVA_OPTS=-Xmx1024m,因为 ANT_OPTS 可能会被 JAVA_OPTS 覆盖,如果它们是系统设置的
export JAVA_OPTS=-Xmx1024m