Открытие url из azureus
Не получается Открыть ссылку браузера из азуреус. Сейчас читаю про BrowserLauncher2. Поможет ли мне он???
Никак не вьеду :(
Using the Library
-----------------
The preferred method for using the BrowserLauncher2 api is to create an
instance of BrowserLauncher (edu.stanford.ejalbert.BrowserLauncher) and
invoke the method: public void openURLinBrowser(String urlString).
If the application will be invoking urls often, it might be useful to wrap
the BrowserLauncher instance with a singleton or use some mechanism to cache it.
The call to openURLinBrowser() should be executed in a separate thread from
the application's main/event thread. Applications can create an instance of
BrowserLauncherRunner (edu.stanford.ejalbert.BrowserLauncherRunner) and pass
it to a Thread. The sample code below is taken from the test application
(edu.stanford.ejalbert.BrowserLauncher.BrowserLauncherTestApp) which can be
used as a reference application.
BrowserLauncherErrorHandler errorHandler = new TestAppErrorHandler(debugTextArea);
BrowserLauncherRunner runner = new BrowserLauncherRunner(launcher, urlString, errorHandler);
Thread launcherThread = new Thread(runner);
launcherThread.start();
Вписывать пытаюсь в /home/user/.azureus/gentoo.config
В строку
JAVA_OPTIONS=""
- Для комментирования войдите или зарегистрируйтесь