Welcome to epiqu1n's site


So, it may not look like much, but that's because it isn't much. And don't expect there to be anything of interest to you here for a while, because this is mainly a place for me to come and practice the little HTML I know. I write Java Applets for fun and for the class I'm taking though, so maybe I'll upload a few of them at some point. Like I said, here's one of the applets I made as part of my final. Sorry, it has no replay feature. I'll get around to that eventually. Java is disabled.
I apologize that the applet does not work. Some problem with the permissions that I have no idea how to handle. I'll figure it out eventually. If you have any idea how to fix it, please, feel free to contact me.

Here's the Java console error:
java.security.AccessControlException: access denied (java.io.FilePermission dict.txt read)
at java.security.AccessControlContext.checkPermission(Unknown Source)
at java.security.AccessController.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkRead(Unknown Source)
at java.io.FileInputStream.(Unknown Source)
at java.io.FileInputStream.(Unknown Source)
at java.io.FileReader.(Unknown Source)
at hangman.init(hangman.java:38)
at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Exception: java.security.AccessControlException: access denied (java.io.FilePermission dict.txt read)

Line 38 is: dict = new BufferedReader(new FileReader("dict.txt"));
"dict" was declared as: public static BufferedReader dict;







epiqu1n@devio.us