Link to home
Start Free TrialLog in
Avatar of danBosh
danBoshFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Not writing to file

I have a bean with the following constructor, it does not write to the file when used as a bean, but when i create a main method and create an instance of the class and run it as a class the file does not get written to. Why? and how do i make it write to a file when used as a bean

public Taxonamy()
{
      try
      {      
            fw = new FileWriter("taxonamyTree.txt",true);
            fw.write("kjffkjsdafdsj");
            fw.flush();
            fw.close();
      }
      catch(IOException e)
      {
            setError("ERROR OPENING FILE");
      
      }
}
Avatar of jimmack
jimmack

When you say it doesn't write to the file (when used as a bean), do you mean that the exception is thrown or that an empty file is created?

Where is the bean being used?  It may be a permission problem (eg. no write permissions for the directory or file that you are trying to write to).

Try adding the following inside the catch:

System.out.println("IOException from Taxonamy:" + e.toString());

This should give you some more detail about the exception.  (If you're using Tomcat, the output will appear in /logs/catalina.out).
Avatar of TimYates
My guess would be the constructor is never called when it's used as a bean...

I'm not sure if this is normal behaviour for Beans, but I guess so, as your code is doing it ;-)

Can't you make the file writing a method, and then call invoke method from the JSP?
>>  My guess would be the constructor is never called when it's used as a bean.

Not really my area, but is this right?  Surely a bean constructor must be called somewhere.
Avatar of danBosh

ASKER

tim: i dont think it is that i just put the code in there for simplicity, it didnt work in other locations of the bean either
Avatar of danBosh

ASKER

and the constructer is called
Do you get an exception?
Avatar of danBosh

ASKER

it doesn't print to the logs and there is no catalina.out in the tomcat directory
Are you sure there's no catalina.out?  It should be in the logs directory below the tomcat installation.
Sounds like a securityexception...

It could be you dont have write privs to that directory (if you are running on Linux/Unix)

You might also be running Tomcat with the security manager, in which case you'll have to grant rights to create this file...

http://dbforums.com/arch/182/2003/8/731227

(at the bottom)
Avatar of danBosh

ASKER

jim: yes i perfomed a search for it, and it not there

tim: its windows, ill try that link
>>           fw = new FileWriter("taxonamyTree.txt",true);
The file will be created in the dir that tomcat starts from, most likely in tomcat/bin, not the dir where jsp page is. do you have the write permission in tomcat/bin?
Avatar of danBosh

ASKER

when i ran the class in command line i created the file taxonamyTree.txt i the web-inf\classes\..\..\ directory where the class is and it wrote to that file, so why would it write to somewhere different when used in conjuntion to a JSP? but ill gp and check anyway
ASKER CERTIFIED SOLUTION
Avatar of kennethxu
kennethxu

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of danBosh

ASKER

outstanding ken, and thanks tim

glad to know your problem is resolved :-)
:-)

Good luck!