gpt4 book ai didi

java - 如何查看使用 TOAD 在 Oracle DB 中编译的 Java 中的 System.out.println?

转载 作者:行者123 更新时间:2023-12-01 17:47:40 24 4
gpt4 key购买 nike

整个过程几乎正常工作,但我想针对特定问题添加一些调试。

for (int j = 0; j < end.length; j++) {
String remove = end[j].trim();
if (cName.endsWith(remove)) {
mPhone = cName.substring(0, cName.length() - remove.length()).trim();
}
System.out.println(cName + ", " + remove + ", " + mPhone);
}

我应该在哪里看到输出?它不在“脚本输出”选项卡、“DBMS 输出”选项卡或“常规”选项卡中。

最佳答案

自从我自己调查它以来已经有一段时间了,但是根据this other post ,您可能需要执行

set serveroutput on size 10000
exec dbms_java.set_output(10000)

然后尝试执行。

关于java - 如何查看使用 TOAD 在 Oracle DB 中编译的 Java 中的 System.out.println?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60838066/

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