一、导入jsoup的核心jar包jsoup-xxx.jar
jar包下载地址:jsoup-1.8.2.jar
中文API地址:http://www.open-open.com/jsoup/parsing-a-document.htm
二、java中用jsoup抓取网页源码,并批量下载图片
package com.dgh.test;
import java.io.File;...
分类:
编程语言 时间:
2015-05-31 14:05:46
阅读次数:
1108
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
今天写代码要给AlertDialog加一个自定义的View 然后就报错了,报错是因为再一次触发加载布局view的时候由于在vie...
分类:
其他好文 时间:
2015-05-31 12:28:30
阅读次数:
174
1.使用页面应当继承与AppCompatActivity
2.如果使用的时候出现如下报错:
java.lang.IllegalStateException: This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_ACTION_BAR and ...
分类:
其他好文 时间:
2015-05-29 18:12:36
阅读次数:
119
java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, ...
分类:
编程语言 时间:
2015-05-29 12:20:05
阅读次数:
133
可以把这个view强转成ViewGroup对象,再通过getChildAt(0),getChildAt(1)获取之后AddView可能会报错:IllegalStateException: The specified child already has a parent问题解决办法最近遇到一个很让人头...
分类:
移动开发 时间:
2015-05-26 18:36:23
阅读次数:
182
在开发Android的程序的时候sqlite数据库是经常用到的;在多线程访问数据库的时候会出现这样的异常:java.lang.IllegalStateException: Cannot perform this operation because the connection pool has .....
分类:
移动开发 时间:
2015-05-26 15:51:44
阅读次数:
140
在使用Gson解析JSON数据时,报错:Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 3939原因:传入的参数有问题;while((len=input...
分类:
编程语言 时间:
2015-05-24 14:05:23
阅读次数:
430
最近在学习python,使用的版本为python3.4,开发环境为使用Pydev插件的eclipse。正好觉得http://www.dexiazai.com/?page_id=23上的音乐不错,决定使用python批量下载下来。
1、音乐来源
经过分析,页面嵌入的虾米播放器中的地址如下,后面以逗号分隔的字符为音乐的id,如音乐的地址为http://www.xiami.com...
分类:
编程语言 时间:
2015-05-15 21:34:20
阅读次数:
348
公司人员命名图片习惯的加上了空格,今天有个需求,要批量下载这个写图片,这下蛋疼了正确的url是这样的http://url211901.jpghttp://url001.jpg写到文本里就要加转义,变成http://url\2119\01.jpghttp://url\001.jpg结果循环的结果就蛋疼了#!/bin/bash
pic=$(catlist.txt)
for..
分类:
编程语言 时间:
2015-05-13 19:59:12
阅读次数:
495
如题,代码中用到了ListView并用到了一个简单的SimpleAdapter来适配其中的List。
其中在调试的时候会遇到弹错,log如下
E/MessageQueue-JNI( 2054): java.lang.IllegalStateException: The content of the adapter has changed but ListView did not...
分类:
其他好文 时间:
2015-05-13 10:14:41
阅读次数:
127