I have some big files to download with Apache's Http Components and I want to be able to display some progress info to users in the admin console of ...
I need to download images from a website, and I have the login name and password, but if i just use URL to download the image, it will throw a exception: ...
I am trying to allow my java server to transfer a file where a web browser can download.
However, I want the browser if they pause and resume the file transfer to ...
In my Java program i want to download a file from a server that uses Http Basic Authentication. Can i use the URL class of java.net package for this purpose ?.If ...
I have written the following java code to download a file from a server that uses http basic authentication. But im getting Http 401 error.I can however download the file by ...
My application currently reads data by copying filesystem tree from remote machine via shared disk, so it works as filesystem deep copy from application's point of view.
This solution is somewhat ...
I am trying to download a file using HTTP. Text files and HTML files are getting downloaded perfectly, but not any other files. I refered Complete Reference Java 2, I found that MIME Header has something to do with this, but was not clear. So can any 1 help me in this regard. Thanx in advance, Tejas
I am pretty new to RMI. I have a simple HTTP sever(found in the net) whic serves the classes to the client through a server socket as follows out.writeBytes("HTTP/1.0 200 OK\r\n"); out.writeBytes("Content-Length: " + bytecodes.length + "\r\n"); out.writeBytes("Content-Type: application/java\r\n\r\n"); out.write(bytecodes); out.flush(); While I try this from the same machine Class cls1 = RMIClassLoader.loadClass(new URL("http://machine-name:2001/"),"className"); the class seems to be loaded. But ...
Hi Looce, thanks for the greeting yes, i have read some example out there that it need base64encode to passing the username and password. about how to put the userfield interface don't worry i know about it, but what i don't know is to to correctly implemented that base64 encode in my modified code that i post in 1st post. that's ...