data _null_; length s $200; declare javaobj juri ('java/net/URI', 'http', 'www.sas.com'); juri.callStringMethod ('toString', s); put s=; run;