I have a function where I am trying to load a file to a URL
object, because the example project said so.
public class SecureFTP {
public s
Old question but this hasn't been said yet. You can do this from a static context:
ClassLoader classLoader = ClassLoader.getSystemClassLoader();
classLoader.getResource("filename");
SecureFTP.class.getClassLoader().getResource(<<your resource name>>);
Should do the trick!
It can't compile because getResource
takes a resource name (a String
, and not a File
) as parameter, in order to load a resource using the class loading mechanism (from the classpath). Using it with a File
makes no sense. If you want to open a file, just use a FileInputStream
or a FileReader
.
See http://docs.oracle.com/javase/6/docs/api/java/lang/ClassLoader.html#getResource%28java.lang.String%29, and include the compiler error message next time you have such a question.
The main method is a static method, so trying to access this
(= the current Object) will not work.
You can replace that line by
URL keyFileURL = SecureFTP.class.getClassLoader().getResource("/home/xxxxx/.ssh/authorized_keys");
From: How to call getClass() from a static method in Java?
Just use TheClassName.class instead of getClass().