I'm making a Java Table that reads data off of a notepad document. The program runs fine on my computer, but does not on my website. I get the Java Error Console (which I provided below) that explains the problem. Obviously, the program has a problem getting permission to read the ranking.txt (notepad document program is reading off of) file, but I'm not sure why. Already checked, and the notepad document, with all of its classes, has been uploaded to the server, and the embedding is correct. Does anyone know how to work with databases (effectively) via Java Applets?

QUOTE
Java Plug-in 1.6.0_13
Using JRE version 1.6.0_13 Java HotSpot™ Client VM
User home directory = C:\Documents and Settings\test
----------------------------------------------------
c: clear console window
f: finalize objects on finalization queue
g: garbage collect
h: display this help message
l: dump classloader list
m: print memory usage
o: trigger logging
q: hide console
r: reload policy configuration
s: dump system and deployment properties
t: dump thread list
v: dump thread stack
x: clear classloader cache
0-5: set trace level to <n>
----------------------------------------------------


java.security.AccessControlException: access denied (java.io.FilePermission ranking.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.<init>(Unknown Source)
at java.util.Scanner.<init>(Unknown Source)
at TextScanner.readFile(TextScanner.java:28)
at TextScanner.<init>(TextScanner.java:20)
at RankingTable.makeArray(RankingTable.java:46)
at RankingTable.getTable(RankingTable.java:28)
at rankings.init(rankings.java:17)
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 ranking.txt read)


Website: http://downndirty.uuuq.com/rankings/classes/ranking.php

Any help would be greatly appreciated.