Hi
I am creating an application.In order to run the application i have to create jar files,which i do with the help of eclipse.I am developing the appl using eclipse.
I know how to write to a file using eclipse
above code would create a file in the src folder with filename.ext specified.Code:FileOutputStream fos=new FileOutputStream("src/filename.ext");
myop=new PrintStream(fos);
But what i want to know is how do i create and write to a file in a jar file..
Hope I am explaning it clearly..
any help would be appreciated.
Thanks

