注意**这不是一个重复的问题,它与从HTML页面获取HTML代码不同
我已尝试在此网站上发布的所有代码,这些代码用于将页面中的HTML代码转换为android.But中的字符串,来自我尝试的所有代码,但未在 PHP 网页,例如(http://www.jonasweb.net/samples.php)。我怎么能这样做?
将HTML源代码作为字符串获取的示例代码:
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet(url);
HttpResponse response = client.execute(request);
String html = "";
InputStream in = response.getEntity().getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
StringBuilder str = new StringBuilder();
String line = null;
while((line = reader.readLine()) != null)
{
str.append(line);
}
in.close();
html = str.toString();
答案 0 :(得分:1)
你无法访问PHP源代码,这就像给吉米萨维尔一个无人看守的孤儿院的关键。有很多安全的东西,比如存储在PHP源代码中的数据库连接,它就是没有发生。