Accessing Files and Directories (EJB_FILES)

Description:

According to Sun EJB specifications, an enterprise bean must not use the java.io package to attempt to access files and directories in the file system.

The file system APIs are not well-suited for business components to access data. Business components should use a resource manager API, such as JDBC API, to store data.

Example: