Converting of Uri to String

前端 未结 7 782
你的背包
你的背包 2020-12-12 20:01

Is it possible to convert an Uri to String and vice versa? Because I want to get the the Uri converted into String to pas

相关标签:
7条回答
  • 2020-12-12 20:45

    You can use .toString method to convert Uri to String in java

    Uri uri = Uri.parse("Http://www.google.com");
    
    String url = uri.toString();
    

    This method convert Uri to String easily

    0 讨论(0)
提交回复
热议问题