Re: How to create or write to an existing file inside .aar during runtime?

2008-12-17 Thread Seem
I also tried with no success. FileOutputStream create = new FileOutputStream(ccFilename); create.close(); In Eclipse everything is working fine, but not if packed as an .aar and deployed inside the axis-container. Seem wrote: Hi, is it possible to create or update

Re: How to create or write to an existing file inside .aar during runtime?

2008-12-17 Thread Seem
Step by Step I getting to the source of my problems During the runtime process, I will get FileNames as Strings which are composed with an associated relative path (like etc/file.name). Without the relative path the creating is possible, but with the unknown path... Do you know any tricks?

How to create or write to an existing file inside .aar during runtime?

2008-12-17 Thread Seem
Hi, is it possible to create or update a file inside the .aar during the service process? Is there an examplary workaround? I tried it like this: String ccFilename = Name of the File anf not a FileObject try { FileWriter create = new FileWriter(ccFilename);