Created
June 2, 2014 20:40
-
-
Save shaik2many/4499978a5518ce335095 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <% | |
| String filename = "/sanvol/app/folder1"; | |
| out.println(filename); | |
| java.io.File f = new java.io.File(filename); | |
| out.println(f.isDirectory()); | |
| javax.naming.InitialContext ic = new javax.naming.InitialContext(); | |
| javax.sql.DataSource ds = (javax.sql.DataSource) ic.lookup("java:oasDS"); | |
| out.println(ds); | |
| %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment