Como vc quer fazer não é possível, pois para ler os dados de um arquivo público na Web, é preciso fazer a comunicação com o webserver usando protocolo HTTP, coisa q a class File não faz.
Para fazer isto vc pode usar o HttpClient da Apache, que faz a comunicação com o server, e carrega os bytes do arquivo.
Outra maneira de fazer é via Sockets, mas ai é mais manual, e não é muito elegante.
http://jakarta.apache.org/commons/httpclient/
http://jakarta.apache.org/commons/httpclient/tutorial.html
import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.methods.*;
import org.apache.commons.httpclient.params.HttpMethodParams;
import java.io.*;
public class HttpClientTutorial {
private static String url = "http://www.apache.org/";
public static void main(String[] args) {
// Create an instance of HttpClient.
HttpClient client = new HttpClient();
// Create a method instance.
GetMethod method = new GetMethod(url);
// Provide custom retry handler is necessary
method.getParams().setParameter(HttpMethodParams.RETRY_HANDLER,
new DefaultHttpMethodRetryHandler(3, false));
try {
// Execute the method.
int statusCode = client.executeMethod(method);
if (statusCode != HttpStatus.SC_OK) {
System.err.println("Method failed: " + method.getStatusLine());
}
// Read the response body.
byte[] responseBody = method.getResponseBody();
// Deal with the response.
// Use caution: ensure correct character encoding and is not binary data
System.out.println(new String(responseBody));
} catch (HttpException e) {
System.err.println("Fatal protocol violation: " + e.getMessage());
e.printStackTrace();
} catch (IOException e) {
System.err.println("Fatal transport error: " + e.getMessage());
e.printStackTrace();
} finally {
// Release the connection.
method.releaseConnection();
}
}
}
Depois com o array dos bytes no responseBody, vc pode fazer o que quiser, gravar no disco e fazer uma instancia do File.
