Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I used this line of code in a Java class to retrieve a URI which i used to customize the ClassLoader:

String uri = getClass().getProtectionDomain().getCodeSource().getLocation().getPath();

Now the same line of code in an Android App in the MainActivity to be exact throw a null pointer exception.

Is there something special for Android development ? Thanks.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

getProtectionDomain() is not implemented in Android's version of Java

http://developer.android.com/reference/java/lang/Class.html#getProtectionDomain%28%29

Also, the ProtectionDomain class is marked as "Legacy security code; do not use."

http://developer.android.com/reference/java/security/ProtectionDomain.html

I assume this only exists in Android Java to maintain compilation compatibility.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...