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 应用程序时,我经常遇到在 AndroidUri类和 JavaURI类之间转换的问题?
Uri
URI
我一直不明白为什么Android需要自己的实现并且没有使用URIJava附带的默认类?
也许我在使用 URI 时只是在摸索表面,还没有弄清楚。谢谢。
Javadoc 说
出于性能的考虑,这个类几乎不执行验证。无效输入的行为未定义。这个类非常宽容——面对无效输入,除非另有说明,否则它将返回垃圾而不是抛出异常。
这绝对不同于 JDK。也许这就是为什么?