Hi,
I was just wondering what might be the path to load jar file from c sharp project folder.
Currently the path I'm using is
String strJarFilePath1 = "C:\\Users\\xxxx\\Downloads\\ss\\ss.jar";
which works perfectly
If I place this ss.jar in project folder by the name WindowsFormsApplication1
what might be the path?
I tried using
String strJarFilePath1 = "@WindowsFormsApplication1.ss.jar";
String strJarFilePath1 = "\\ss.jar";
String strJarFilePath1 = "..\\..\\ss.jar";
please help me out
thanks