Re: [JPP-Devel] Some help with Java I/O...

2007-06-21 Thread Sunburned Surveyor
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

Re: [JPP-Devel] Some help with Java I/O...

2007-06-21 Thread Joe Desbonnet
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

Re: [JPP-Devel] Some help with Java I/O...

2007-06-20 Thread Sascha L. Teichmann
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

[JPP-Devel] Some help with Java I/O...

2007-06-20 Thread Sunburned Surveyor
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