I am building a simple application which designed for Windows Mobile to download a file from Internet, here is a part of my code:
At first, I thought "sink" is run on the separate thread just like javafx.async.RemoteTextDocument does, but it just block my main application thread.
So I tried to put it into another thread, the "block" problem is gone as expected. However, it just block the "HttpRequest thread".
After that, I tried to take focus on "onInput: function(is$1: java.io.InputStream)"
The download is working but it make the application so lag even I put it onto a separate thread.
Just a simple download application in mobile took my couple of month... someone please help me...
Thanks.
This message was edited 2 times. Last update was at by Bear Bibeault
Srikanth Shenoy
author
Ranch Hand
Joined: Jan 24, 2004
Posts: 184
posted
0
Which version of JavaFX are you using. That code doesnt even remotely look familiar to me. Is it JavaFX 1.1 ?
Check the javadoc of JavaFX 1.2 or 1.3 for a detailed code snippet on how to use the HttpRequest