0
HTML = EntityUtils.toString(response.getEntity());
ResponseHandler<String> responseHandler = new BasicResponseHandler();
String ResponseBody = httpclient.execute(httppost, responseHandler);
table = ResponseBody.substring(ResponseBody.indexOf("<table border=\"1\" cellpadding=\"0\" width=\"100%\" cellspacing=\"0\">"));
table = table.substring(0, table.indexOf("</table>"));  

String htmlString = table;
String noHTMLString = htmlString.replaceAll("\\<.*?\\>", "");
noHTMLString = noHTMLString.replaceAll("\r", "<br/>");
noHTMLString = noHTMLString.replaceAll("\n", " ");
noHTMLString = noHTMLString.replaceAll("\'", "&#39;");
noHTMLString = noHTMLString.replaceAll("\"", "&quot;");

TextView WORK = (TextView) findViewById(R.id.HTML);
WORK.setText(htmlString); 

我正在使用正则表达式来提取HTML代码。这是我的代码。看起来是正确的,但表(子字符串)是返回的不是提取的文本。有人知道为什么吗???

4

1 回答 1

2

您必须使用新的 String 对象作为 TextView 的源。改变这个:

WORK.setText(htmlString);

到以下:

WORK.setText(noHTMLString);
于 2013-03-19T14:57:48.820 回答