String s_filePath = "";
String s_path="";
s_filePath = request.getRealPath("/template/") + "template.html";
out.print(s_filePath);   
String templateContent = "";
FileInputStream fileinputstream = new FileInputStream(s_filePath);// 读取模块文件 int lenght = fileinputstream.available();
byte bytes[] = new byte[lenght];
fileinputstream.read(bytes);
fileinputstream.close();
templateContent = new String(bytes);
                        ........................
                        ........................省略部分
                            return s_path;大家帮我看看,这段代码哪儿有问题哦?
s_filePath 变量获取到文件的全路径,然后作为参数,传递给FileInputStream fileinputstream = new FileInputStream(s_filePath);中
但是,我通过断点跟踪发现,程序,走到FileInputStream fileinputstream = new FileInputStream(s_filePath);的地方,再往下走的时候,直接跳到
return s_path;位置,这显然不符合我的初综呀,我希望能读取这个摸板的文件的,但事实上,根本没有读取这摸板的内容,请求帮助