Thanks for your suggestions Sascha. I have made some modifcations to
my method body based on them.
Thank you also for your suggestion Joe.
The Sunburned Surveyor
On 6/21/07, Joe Desbonnet <[EMAIL PROTECTED]> wrote:
> I've been doing work with Hibernate recently and I notice that one of
> the opt
I've been doing work with Hibernate recently and I notice that one of
the optional modules for this is ehcache -- this seems to be a
generical caching library which abstracts out the usual caching
patterns. You might want to check that out...
Joe.
On 6/21/07, Sascha L. Teichmann <[EMAIL PROTECTE
You wrote
File dataStorageDirectory = new File(argPath);
File toWrite = new File(argPath + argFileName);
Do you intent to write
File dataStorageDirectory = new File(argPath);
File toWrite = new File(argPath, argFileName);
',' instead of '+' for appending a filename to the path?
See Java