在JSP中写TEXT文件
类别: JSP教程
使用PrintWriter对象即可写Text文件。
请参考以下示例:
<%@ page import="java.io.*" %>
<%
String str = "print me";
//always give the path from root. This way it almost always works.
String nameOfTextFile = "/usr/anil/imp.txt";
try {
PrintWriter pw = new PrintWriter(new FileOutputStream(nameOfTextFile));
pw.println(str);
//clean up
pw.close();
} catch(IOException e) {
out.println(e.getMessage());
}
%>
现在,打开imp.txt加以查看,字符串"print me"应该已经写入
请参考以下示例:
<%@ page import="java.io.*" %>
<%
String str = "print me";
//always give the path from root. This way it almost always works.
String nameOfTextFile = "/usr/anil/imp.txt";
try {
PrintWriter pw = new PrintWriter(new FileOutputStream(nameOfTextFile));
pw.println(str);
//clean up
pw.close();
} catch(IOException e) {
out.println(e.getMessage());
}
%>
现在,打开imp.txt加以查看,字符串"print me"应该已经写入
- 上一篇: 在JSP中创建目录
- 下一篇: JAVA中对文件的读写操作之比较
-= 资 源 教 程 =-
文 章 搜 索