Results 1 to 1 of 1
- 08-10-2012, 08:17 PM #1
Member
- Join Date
- Aug 2012
- Posts
- 1
- Rep Power
- 0
Connecting to my torrent client (I use it for legal stuff only!)
Hey
It summer and I am messing around with a little project of mine.
I am building a program (maybe app later on) to remotely
handle my torrents (only free torrents!).
For example:
If I type this url (http://usernameassword@iport/gui/?...&s=torrentlink)
in the browser the movie gets in my client/starts downloading. I want this to happen by my program.
Code:
This is what I already have, i am sure it connects but it doesn't add the torrent to my programJava Code:import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; public class Connection { private String ip; private String port; private String username; private String password; public Connection(String ip, String port, String username, String password) { this.ip = ip; this.port = port; this.username = username; this.password = password; connect(this.ip, this.port); } private void connect(String ip, String port) { try { URL myURL = new URL("http://username:password@iport/gui/?action=add-url&s=torrentlink"); URLConnection myURLConnection = myURL.openConnection(); myURLConnection.connect(); } catch (MalformedURLException e) { System.out.println("failed connection"); } catch (IOException e) { System.out.println("failed connection"); } } }
Does somebody know what I need to add for it to work?
I use it for legal stuff only!
Thanks in advance!
Similar Threads
-
Connecting server and client
By omsh12 in forum NetworkingReplies: 1Last Post: 06-30-2012, 01:22 PM -
how to loop client connecting attempt while server is not ready
By amro in forum NetworkingReplies: 9Last Post: 05-28-2011, 09:13 PM -
Encode data to torrent?
By greatmajestics in forum AWT / SwingReplies: 0Last Post: 04-28-2010, 04:12 PM -
Torrent Episode Downloader 0.90
By levent in forum Java SoftwareReplies: 0Last Post: 08-02-2007, 05:56 PM -
Torrent Episode Downloader 0.80
By levent in forum Java SoftwareReplies: 0Last Post: 06-01-2007, 06:56 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks