jsp中的jericho Html解析器错误

时间:2013-02-16 06:30:13

标签: java html5 jsp java-ee html-parsing

我已将代码编写为

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);

现在我想从元素INFORM中获取 text 是否忽略空格我该怎么办?上面提到的String INFORM显示错误重复的局部变量INFORM );

e.g

元素INFORM的文本提取是"我的名字是饱和的" 但它必须发送响应

" mynameissatish"

1 个答案:

答案 0 :(得分:0)

您使用了两次名称INFORM - 这是不可能的!

String sourceUrlString = "http://some url";
Source source = new Source(new URL(sourceUrlString));
Element INFORM = source.getElementById("main").getAllElementsByClass("game").get(i-1);
String response = INFORM.replaceAll("\\s","");   // ! Use another name here !
sendResponse(resp, respone); // or use '+' - not shure if 1 or 2 args