Converting of Uri to String

前端 未结 7 814
你的背包
你的背包 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:33

    String to Uri

    Uri myUri = Uri.parse("https://www.google.com");
    

    Uri to String

    Uri uri;
    String stringUri = uri.toString();
    

提交回复
热议问题