I noticed the Uri.Builder in this answer And I wondered if I can use it in my GAE project in eclipse
I want to do something like
Uri.Builder b = Uri.parse("https://mydomain.com").buildUpon();
b.path("/abc/{5D/{B0blhahblah-blah}I1.jpg");
Uri u = b.build();
I cant find a way to add the Android SDK to my Google New Web Application Project
Is it possible and how?
Thanks in advance...I
Uri.Builder creates Android Uri objects, not Java URI objects. You would need to:
Grab the source code to Uri from the open source repository.
Refactor it into your own package, probably.
Remove everything that refers to other Android classes.
Make any other modifications you feel you need to consume the resulting Uri objects.