I need to read a remote file using a java app, but the file is in apache server on linux. I tried with "\\" but doesn't work like windows. How can i do that?
|
You'll need to use the URL class: http://download.oracle.com/javase/1.4.2/docs/api/java/net/URL.html This is the standard way of reading files from a URL. |
|||
|
|
|
Try accessing your file via web browser using url formatted like:
When you see your file in browser, use that url from your Java app, too. |
|||
|
|
|
This depends on a number of things. But we don't really know what question you're asking. Are you asking how to retrieve a document over HTTP? How to do a file copy from Linux? Network shares? If the file is served by the webserver (in the docroot), the easiest way is probably to request it over HTTP using the If the file is NOT under the webroot (i.e. can't be specified as |
|||
|
|