gpt4 book ai didi

java - ColdFusion Java 方法未找到异常

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:20:15 25 4
gpt4 key购买 nike

这个问题一直让我抓狂。我试图在 ColdFusion 中使用 Java 创建一个 Document 对象。当我这样做时:

nd = createObject("java","javax.xml.parsers.DocumentBuilder");

我可以转储 nd 并看到它正确加载了所有方法:

object of javax.xml.parsers.DocumentBuilder Class Name javax.xml.parsers.DocumentBuilder 

Method / Return Type

getDOMImplementation() / org.w3c.dom.DOMImplementation

getSchema() / javax.xml.validation.Schema

isNamespaceAware() / boolean

isValidating() / boolean

isXIncludeAware() / boolean

newDocument() / org.w3c.dom.Document

parse(java.io.File) / org.w3c.dom.Document

parse(java.lang.String) / org.w3c.dom.Document

parse(org.xml.sax.InputSource) / org.w3c.dom.Document

parse(java.io.InputStream, java.lang.String) / org.w3c.dom.Document

parse(java.io.InputStream) / org.w3c.dom.Document

reset() / void

setEntityResolver(org.xml.sax.EntityResolver) / void

setErrorHandler(org.xml.sax.ErrorHandler) / void

我正在尝试调用 newDocument() 方法。我已经在 cfscript 和 cfsets 中尝试了以下所有操作:

nd.newDocument();
nd.newDocument(JavaCast("null",""));
nd = createObject("java","javax.xml.parsers.DocumentBuilder").newDocument();
nd = createObject("java","javax.xml.parsers.DocumentBuilder").newDocument(JavaCast("null",""));

但是,无论我尝试哪种方法,我都会收到此错误:

Either there are no methods with the specified method name and argument types or the isNamespaceAware method is overloaded with argument types that ColdFusion cannot decipher reliably. ColdFusion found 0 methods that match the > provided arguments. If this is a Java object and you verified that the method > exists, use the javacast function to reduce ambiguity.

我可以看到该方法已加载。该方法未重载。它不需要任何参数。而且,即使我明确告诉 CF 我正在传递 null,它也找不到方法..

我尝试访问类中的其他方法 - 但它也找不到这些方法。我不确定为什么我可以转储类的内容 - 我可以看到所有方法。但是,不知何故当我尝试调用它们时,CF 变得很困惑并且找不到它们..

任何想法都会非常有帮助..

谢谢!!

最佳答案

您必须为 documentBuilder 工厂创建一个对象。在工厂的帮助下,您可以获得真实的 xml 信息。在这里,我创建了对象并使用 documentbuilderfactory 调用了 parse 方法。您还必须注入(inject)一个 newInstance() 然后只有您可以访问 newdocument() 方法。我的 Xml 内容:testParse.xml

<?xml version="1.0"?>
<company>
<staff id="1001">
<firstname>yong</firstname>
<lastname>mook kim</lastname>
<nickname>mkyong</nickname>
<salary>100000</salary>
</staff>
<staff id="2001">
<firstname>low</firstname>
<lastname>yin fong</lastname>
<nickname>fong fong</nickname>
<salary>200000</salary>
</staff>
</company>

*CF代码:

<cfset myObj = createObject("java","javax.xml.parsers.DocumentBuilderFactory")>
<cfset createDocs = myObj.newInstance().newDocumentBuilder()>
<cfset parseDocs = createDocs.parse(expandpath('/testParse.xml'))>
<cfset getNodeName = parseDocs.getDocumentElement().getNodeName()>
<cfset getList = parseDocs.getElementsByTagName("staff")>

<cfloop index="i" from="1" to="#getList.getlength()#">
<!--- Do your business logic here --->
</cfloop>

希望对你有所帮助。谢谢。

关于java - ColdFusion Java 方法未找到异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51138765/

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