Pasar un archivo local a URL en Java


¿Cómo puedo crear un nuevo objeto URL usando un archivo local, con el propósito de realizar pruebas unitarias?

 144
Author: Nathan, 2011-05-23

7 answers

new File(path).toURI().toURL();
 246
Author: jarnbjo,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-04-16 11:47:45
new File("path_to_file").toURI().toURL();
 36
Author: Ted Hopp,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2011-05-23 14:22:42

Usando Java 7:

Paths.get(string).toUri().toURL();

Sin embargo, es probable que desee obtener un URI. Por ejemplo, un URI comienza con file:/// pero una URL con file:/ (al menos, eso es lo que produce toString).

 28
Author: Aleksandr Dubinsky,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2015-09-05 17:08:14
new URL("file:///your/file/here")
 19
Author: Alex,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2011-05-23 14:21:07
File myFile=new File("/tmp/myfile");
URL myUrl = myFile.toURI().toURL();
 8
Author: Sean Patrick Floyd,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2011-05-23 14:23:41

También puedes usar

[AnyClass].class.getResource(filePath)
 3
Author: xMichal,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-05-22 18:32:07

Echa un vistazo aquí para la sintaxis completa: http://en.wikipedia.org/wiki/File_URI_scheme para sistemas tipo unix será como @Alex dijo file:///your/file/here mientras que para sistemas Windows sería file:///c|/path/to/file

 2
Author: Liv,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2011-05-23 14:23:06