|
From: nico r. <nic...@gm...> - 2006-08-25 23:25:47
|
The parameter_handler is read-only as of now. I could add functions to write
I guess. Maybe by Monday...
On 8/25/06, RENARD Philippe <Phi...@un...> wrote:
>
> Just so that nobody lose too much time on my previous mail. Ting found
> the error and it is corrected. The problem was that the eof character,
> read in the input file, was copied in the string. The parser had an
> error because of that.
>
> The solution is to read the file with that loop:
>
> while ( true ) {
> c = paramfile.get();
> if( paramfile.eof() ) break;
> simul_parameter_string+=c;
> }
>
> I still have the problem of modifying the parameters. I will do it brute
> force by searching and replacing words in the string. But if someone has
> a better idea, it would be great !
>
> Best, Philippe
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Sgems-devel mailing list
> Sge...@li...
> https://lists.sourceforge.net/lists/listinfo/sgems-devel
>
|