Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 android 应用程序中实现了一个 Apache Http 客户端,我只需要下载页面的实际 HTML,而不是图像、脚本或 css。有什么办法可以关闭这些吗?像这样的东西。。
client = new DefaultHttpClient(); client.setCssEnabled(false); client.setJs(false); client.setImages(false);
我知道这些方法不存在,但您可能会理解我想要实现的目标。
谢谢你的帮助!