问题描述
<%@pagecontentType="html/text;charset=gb2312"%><%@pageimport="java.io.*"%><%!intcounter=0;%><%Strings;s=request.getContextPath();Filef=newFile(s+"\Counter.txt");s=f.getAbsolutePath();out.print(s+"<br>");//为什么按这里我得到的这个路径去寻找文件,却发现没有该文件,但这个网页计数器还是一样的可以运行,没有什么影响。if(!f.exists()){counter++;try{FileOutputStreamfo=newFileOutputStream(f);DataOutputStreamdt=newDataOutputStream(fo);dt.writeInt(counter);fo.flush();dt.flush();fo.close();dt.close();}catch(IOExceptione){}}else{try{FileInputStreamfi=newFileInputStream(f);DataInputStreamdi=newDataInputStream(fi);counter=di.readInt();di.close();fi.close();counter++;FileOutputStreamfo=newFileOutputStream(f);DataOutputStreamdt=newDataOutputStream(fo);dt.writeInt(counter);fo.flush();dt.flush();fo.close();di.close();}catch(IOExceptione){}}%><palign="center">你是第<%=counter%>位访客</p>我不知道我的这个文件建在哪里了?按代码输出的路径去找,但找不到该文件?请求各位大虾帮忙。谢谢了
解决方案
解决方案二:
tomcat/你的项目/Root下面-------------------------------还是找不到你就在TOMCAT搜索Counter.txt--------------------------------还找不到估计就是你发布项目的TOMCAT错了
解决方案三:
什么东西