diff options
Diffstat (limited to 'HelloWorld.java')
| -rw-r--r-- | HelloWorld.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/HelloWorld.java b/HelloWorld.java index d118cee..4f93a65 100644 --- a/HelloWorld.java +++ b/HelloWorld.java @@ -11,9 +11,12 @@ public class HelloWorld extends Activity { protected void onCreate(Bundle savedInstanceState) { try { + Test t = new Test(); URL url = new URL("https://slcl.privatedns.org"); HttpsURLConnection c = (HttpsURLConnection) url.openConnection(); + t.f(); + c.setFollowRedirects(true); OutputStream os = c.getOutputStream(); |
