답변:
parse
정적 메소드를 사용할 수 있습니다.Uri
Uri myUri = Uri.parse("http://stackoverflow.com")
Uri
클래스 가 있습니다 . 메소드가 없는 클래스 developer.android.com/reference/java/net/URI.html 도 있습니다 . 따라서 올바른 수업은 입니다. 당신이 올바른 수입이 있는지 확인parse
URI
parse
Uri
create
메소드를 사용할 수 있습니다 . Uri만큼 사용하기 쉽습니다. Uri는 어떤 이점이 있습니까?
Kotlin 및 Kotlin 안드로이드 확장을 사용하는 경우 이를 수행하는 아름다운 방법이 있습니다.
val uri = myUriString.toUri()
Kotlin 확장 ( KTX )을 프로젝트에 추가하려면 앱 모듈의 build.gradle에 다음을 추가하십시오.
repositories {
google()
}
dependencies {
implementation 'androidx.core:core-ktx:1.0.0-rc01'
}
아래와 같이 Uri.parse () 를 사용하여 문자열을 Uri로 구문 분석 할 수 있습니다 .
Uri myUri = Uri.parse("http://stackoverflow.com");
다음은 새로 만든 Uri를 암시 적으로 사용하는 방법의 예입니다. 사용자 전화의 브라우저에서 볼 수 있습니다.
// Creates a new Implicit Intent, passing in our Uri as the second paramater.
Intent webIntent = new Intent(Intent.ACTION_VIEW, myUri);
// Checks to see if there is an Activity capable of handling the intent
if (webIntent.resolveActivity(getPackageManager()) != null){
startActivity(webIntent);
}
java.net.URI
URI가 표준으로 완전히 인코딩되지 않으면 Java 파서 가 실패합니다. 예를 들어 다음을 구문 분석하십시오 http://www.google.com/search?q=cat|dog
. 세로 막대에는 예외가 발생합니다.
urllib를 사용하면 문자열을로 쉽게 변환 할 수 있습니다 java.net.URI
. URL을 사전 처리하고 이스케이프합니다.
assertEquals("http://www.google.com/search?q=cat%7Cdog",
Urls.createURI("http://www.google.com/search?q=cat|dog").toString());