当前位置: 技术问答>java相关
菜鸟弱问题:如何把屏幕显示输出全生成到txt文件里去?
来源: 互联网 发布时间:2015-08-17
本文导语: 手头没资料,大虾快帮忙。 | FileOutputStream fOutStream; PrintStream pStream; try { fOutStream = new FileOutputStream(new File("e:\c.txt")); pStream = new PrintStream(fOutStream); ...
手头没资料,大虾快帮忙。
|
FileOutputStream fOutStream;
PrintStream pStream;
try
{
fOutStream = new FileOutputStream(new File("e:\c.txt"));
pStream = new PrintStream(fOutStream);
System.setOut(pStream);
}catch(IOException e)
{
}
这样你想输出的内容就可以输出到e:c.txt里边去了.
PrintStream pStream;
try
{
fOutStream = new FileOutputStream(new File("e:\c.txt"));
pStream = new PrintStream(fOutStream);
System.setOut(pStream);
}catch(IOException e)
{
}
这样你想输出的内容就可以输出到e:c.txt里边去了.
|
Printstream out=new PrintStream(new BufferOutputStream(new FileOutputStream("t.txt")));
system.setOut(out);
system.setOut(out);
我记得以前有人答过的,就是这个样子的,我是借花献佛
system.setOut(out);
system.setOut(out);
我记得以前有人答过的,就是这个样子的,我是借花献佛
|
用DOS里面的重定向。
要不你就不要显示输出到屏幕,直接到文件,不可以吗?
import java.io.*;
public class fileio{
public static void main(String[] args) throws IOException
{
String hello="hello";
FileOutputStream out=null;
out=new FileOutputStream("a.dat");
if(out!=null)
{
System.out.println("Begin to write to a file called a.dat");
for(int i=0;i
要不你就不要显示输出到屏幕,直接到文件,不可以吗?
import java.io.*;
public class fileio{
public static void main(String[] args) throws IOException
{
String hello="hello";
FileOutputStream out=null;
out=new FileOutputStream("a.dat");
if(out!=null)
{
System.out.println("Begin to write to a file called a.dat");
for(int i=0;i