Convert Uri to String and String to Uri

前端 未结 5 1617
灰色年华
灰色年华 2020-12-08 18:37

I\'m developing some Application which allows select image from SD Card, save it into database and set this value for ImageView. I need to know way for converting uri to str

5条回答
  •  一向
    一向 (楼主)
    2020-12-08 19:07

    Try this to convert string to uri

    String mystring="Hello"
    Uri myUri = Uri.parse(mystring);
    

    Uri to String

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

提交回复
热议问题