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
I had a few minutes after my wife went to bed tonight to work on my
FeatureCache. I'm currently writing code for the BOFFFeatureWriter. In
this class I have a method that sets up a DataOutputStream so I can
write bytes representing the feature to a binary file.
I need to see if a binary file repr