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.
我可以用什么来代替settextcontent更新整数值?当我使用settextcontent更新整数值时,cmd会抛出这个错误
settextcontent
settextcontent(java.lang.string) in org.w3c.dom.node cannot be applied to (int)
您需要将方法参数转换为字符串,如下所示:String.valueOf(val)
String.valueOf(val)