Jsoup请求数据返回json包含html标签
程序员文章站
2022-06-17 16:30:28
...
楔子
jsoup使用get请求数据,得到的数据包含html标签,导致在使用json转javabean时出现错误。
jsoup请求返回json
StringattenNextPart=Jsoup.connect(nextUrl).headers(SysConstant.headMap).ignoreContentType(true).get().body().html();
使用上面的方式得到的json字符串包含html标签。无法格式化。改用下面的方式
Connection connection=Jsoup.connect(picListURL).ignoreContentType(true);
String otherPic = connection.execute().body().toString();
jsonview
json格式化工具可以使用 sonview
joda简单介绍
long start = System.currentTimeMillis();
List<AttenInfo> attenInfo = getAttenInfo();
DownAttenPhoto.downPic(attenInfo);
long end = System.currentTimeMillis();
System.out.println("开始时间" + new DateTime(start).toString("yyyy-MM-dd HH:mm:ss"));
System.out.println("结束时间" + new DateTime(end).toString("yyyy-MM-dd HH:mm:ss"));
}
joda 参考下面地址
https://www.ibm.com/developerworks/cn/java/j-jodatime.html
http://www.joda.org/joda-time/
上一篇: 第一个SpringBoot
下一篇: [转]Kafka文件存储机制那些事