Write a simple Java program:
1. Drill down and get files.
2. Check for package statement, check for import statements.
3. If blah, blah, blah, then add import blah, blah.
I wrote a generic one that could be used whenever I needed to so something
like that to lots of files, e.g. change the packag
> I need to make sure that these Java libraries are included when my JSP's
> are compiled:
>
> java.io.*
> java.util.*
>
> I am migrating from another application server that added these to my JSP's
> and now will have the daunting task of manually importing these on every
> JSP that we have.
1) W