java如何把输出写到文件中? 80
importjava.io.*;importjava.io.IOException;importjavax.servlet.ServletConfig;importjav...
import java.io.*;
import java.io.IOException;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.*;
public class TestLiftCycleServlet extends HttpServlet {
@Override
public void destroy() {
System.out.println("destroy");
}
@Override
public void init(ServletConfig config) throws ServletException {
System.out.println("init");
}
public TestLiftCycleServlet() {
System.out.println("constructor!");
}
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
System.out.println("doGet");
}
}
就是把system.out.println()的内容输出到文件里去,我想用java的方法实现,不是想记录日志,能不能写具体一点,File file =null;
PrintWriter pw = null;
try{
file = new File("c:\\6.txt");
pw = new PrintWriter(file);
pw.println("destroy");
} catch (Exception e ){
e.printStackTrace();
}
pw.close();
这个为什么不行?
zwxlovellm的方法不行 展开
import java.io.IOException;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.*;
public class TestLiftCycleServlet extends HttpServlet {
@Override
public void destroy() {
System.out.println("destroy");
}
@Override
public void init(ServletConfig config) throws ServletException {
System.out.println("init");
}
public TestLiftCycleServlet() {
System.out.println("constructor!");
}
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
System.out.println("doGet");
}
}
就是把system.out.println()的内容输出到文件里去,我想用java的方法实现,不是想记录日志,能不能写具体一点,File file =null;
PrintWriter pw = null;
try{
file = new File("c:\\6.txt");
pw = new PrintWriter(file);
pw.println("destroy");
} catch (Exception e ){
e.printStackTrace();
}
pw.close();
这个为什么不行?
zwxlovellm的方法不行 展开
5个回答
推荐于2016-10-01 · 知道合伙人互联网行家
关注
展开全部
Java使用FileWriter实现文件的写入,用法为:FileWriter(file,true); 其中第二个参数设置成false就是覆盖写入,true就是增量存储。举例代码:
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
public class File01Demo {
public static void main(String[] args) throws IOException {
File file = new File("D:\\a.txt");
FileWriter fw = new FileWriter(file,true); //设置成true就是追加
fw.write("asd");
fw.write("\r\n");
fw.write("ffd");
fw.close();
}
}
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
public class File01Demo {
public static void main(String[] args) throws IOException {
File file = new File("D:\\a.txt");
FileWriter fw = new FileWriter(file,true); //设置成true就是追加
fw.write("asd");
fw.write("\r\n");
fw.write("ffd");
fw.close();
}
}
展开全部
system.out.println()是在控制台输入的
你可以用log4j
然后在配置文件里指定日志输出的目录。
你可以用log4j
然后在配置文件里指定日志输出的目录。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2008-09-30
展开全部
用FileOutputStream
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你可以加上FileOutputStream fis=new FileOutputSteam(file);
然后pw=new PrintWriter(fis);试试。
然后pw=new PrintWriter(fis);试试。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代码没有任何问题啊?你测试看看
import java.io.File;
import java.io.PrintWriter;
class T {
public static void main(String args[]) throws Exception {
PrintWriter pw = null;
try {
File file = new File("c:\\6.txt");
pw = new PrintWriter(file);
pw.println("destroy");
} catch (Exception e) {
e.printStackTrace();
}
pw.close();
}
}
import java.io.File;
import java.io.PrintWriter;
class T {
public static void main(String args[]) throws Exception {
PrintWriter pw = null;
try {
File file = new File("c:\\6.txt");
pw = new PrintWriter(file);
pw.println("destroy");
} catch (Exception e) {
e.printStackTrace();
}
pw.close();
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询