यह बहुत देर हो सकती है, यह कई अन्य लोगों की मदद कर सकती है। getClass (: ये परियोजना
हो रही संसाधनों डिफ़ॉल्ट पैकेज के रूप में विशिष्ट संकुल
// Getting Resource as file object
File f = new File(getClass().getResource("/com/vivek/core/excludedir.properties").getFile());
// Getting resource as stream object
InputStream in = getClass().getResourceAsStream("/com/vivek/core/excludedir.properties");
नोट से
// Getting Resource as file object
File f = new File(getClass().getResource("/excludedir.properties").getFile());
// Getting resource as stream object
InputStream in = getClass().getResourceAsStream("/excludedir.properties");
हो रही संसाधनों में उपलब्ध संसाधनों का उपयोग करने के तरीके हैं) एक गैर स्थैतिक कार्य है जिसे स्थैतिक संदर्भ के रूप में नहीं कहा जा सकता है। यदि आप स्थिर संदर्भ से कॉल करना चाहते हैं
YourClassName.class.getResource("/com/vivek/core/excludedir.properties").getFile()
आशा है कि इससे मदद मिलती है। चीयर्स !!
आपका क्या मतलब है, "एक विशिष्ट पैकेज में"? कौन सा पैकेज? – skaffman
यह निम्न प्रश्नों के लिए डुप्लिकेट जैसा दिखता है: http://stackoverflow.com/questions/4359876/how-to-load-reference-a-file-as-a-file-instance-from-the-classpath –