import java.io.*; /** * Use this if need to do some testing, and want to read from a file instead of * directly off of Banner. */ public class TranscriptReciever_File { public TranscriptReciever_File() { } public InputStream getTranscriptStream(String user, String pass) throws IOException { FileInputStream in = new FileInputStream("/local_software/jakarta-tomcat-4.0.1/webapps" + "/sas_C/WEB-INF/classes/transcript.html"); return in; } }