gpt4 book ai didi

eclipse - 错误!非静态 Java 函数 'replace' 的第一个参数不是有效的对象引用

转载 作者:行者123 更新时间:2023-12-03 00:18:19 26 4
gpt4 key购买 nike

我试图让 ANT 在 Eclipse 中创建 JUNIT 测试的 HTML 报告,但在创建 ANT 构建后,运行它时出现以下错误:

[junitreport] Processing C:\Documents and Settings\Administrator\workspace\Home\junit\TESTS-TestSuites.xml to C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\null785926900
[junitreport] Loading stylesheet jar:file:/C:/ANT/apache-ant-1.8.3/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-frames.xsl
[junitreport] : Error! The first argument to the non-static Java function 'replace' is not a valid object reference.
[junitreport] : Error! Cannot convert data-type 'void' to 'reference'.
[junitreport] : Fatal Error! Could not compile stylesheet
[junitreport] Failed to process C:\Documents and Settings\Administrator\workspace\Home\junit\TESTS-TestSuites.xml

我需要做什么来解决这个问题?

以下是我尝试运行的 Build.xml 的部分:

<target name="Home">
<mkdir dir="${junit.output.dir}"/>
<junit fork="yes" printsummary="withOutAndErr">
<formatter type="xml"/>
<test name="Home" todir="${junit.output.dir}"/>
<classpath refid="Home.classpath"/>
</junit>
</target>
<target name="junitreport">
<junitreport todir="${junit.output.dir}">
<fileset dir="${junit.output.dir}">
<include name="TEST-*.xml"/>
</fileset>
<report format="frames" todir="${junit.output.dir}"/>
</junitreport>
</target>

最佳答案

当我收到此错误时,我必须在 Eclipse 中右键单击我的 build.xml 文件,选择“Run as Ant build...”选项(菜单中的第三个),然后单击 JRE 选项卡并选择“在与工作区相同的 JRE 中运行”选项,然后继续运行脚本。由于某种原因,这解决了问题。老实说我不知道​​为什么。

关于eclipse - 错误!非静态 Java 函数 'replace' 的第一个参数不是有效的对象引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10607151/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com