hi again,
i just tested reading text file, but i'm not able to read a file... here is simple jsp code for make sure it found a file and read...
<%@ page language="java" import="java.io.*" %>
<%@ page language="java" import="java.util.*" %>
<%
try {
File txtFile = new File("stdnet.txt"
FileReader fr = new FileReader(txtFile);
out.println("found file!"
} catch (IOException e) {
out.println("error!"
}
%>
what is wrong here? please help...
JJ //
i just tested reading text file, but i'm not able to read a file... here is simple jsp code for make sure it found a file and read...
<%@ page language="java" import="java.io.*" %>
<%@ page language="java" import="java.util.*" %>
<%
try {
File txtFile = new File("stdnet.txt"
FileReader fr = new FileReader(txtFile);
out.println("found file!"
} catch (IOException e) {
out.println("error!"
}
%>
what is wrong here? please help...
JJ //