Is it possible to rename the openconnection()?
Orginal:
URL url = new URL("http://google.co.in");
URLConnection connection = url.**openConnection**();
After:
URL url = new URL("http://google.co.in");
URLConnection connection = url.**connect**();
I'm just wondering if it is possible and how I would go about doing it. Is there an alternative? I was thinking of making a class in order to do this, but I wasn't 100% sure if that would be possible.
<------------------ Or ---------------->
Orginal:
URL url = new URL("http://google.co.in");
URLConnection connection = url.**openConnection**();
After:
string st1 = "open";
string st2 = "Connection";
URL url = new URL("http://google.co.in");
URLConnection connection = url.**st1 + st2**();
I get an error when I make it a string, but I'm not really sure how to make it combine the two to define that. If that makes since, I'm kinda rusty at coding with Java.