我想抛出一个异常,以下是我的异常:
[致命错误] Test.xml:18:23: 元素类型 "value" 必须以匹配的 end-tag 终止</value>
。
现在我想单独取值 18 。
我尝试使用以下代码:
System.out.println(java.util.Arrays.toString(e.getMessage().split(":")));
但它正在打印:
[The element type "value" must be terminated by the matching end-tag "</value>".].
我怎样才能单独取值 18?
当我尝试使用以下代码时:
System.out.println(e.getMessage().toString());
, 只是打印"The element type "value" must be terminated by the matching end-tag "</value>"."