我写代码为
String sourceUrlString="http://some url";
Source source=new Source(new URL(sourceUrlString));
Element INFORM = source.getElementById("main").getAllElementsByClass("game").get(i-1);
String INFORM = INFORM.replaceAll("\\s",""); //shows error here
sendResponse(resp,+INFORM);
现在我想要从 Element 获取的文本INFORM
是忽略空白我该怎么做?上面提到的String INFORM
Show error Duplicate local variable INFORM );
例如
Element INFORM 获取的文本是“我的名字是 satish”,但它必须发送响应为
“我的名字”