本文介绍了如何在Java中解码URL实体?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试用Java解码html实体,但我注意到
I'm trying to decode html entities in Java, but I noticed that
URLDecoder.decode(String stringToDecode, String charset);
已弃用.
我应该用什么代替它?
推荐答案
您提到的方法未弃用.参见此处-> http://docs.oracle.com/javase/7/docs/api/java/net/URLDecoder.html
The method you mention is not deprecated. See here -> http://docs.oracle.com/javase/7/docs/api/java/net/URLDecoder.html
URLDecoder.decode(String stringToDecode)
另一方面.
这篇关于如何在Java中解码URL实体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!