java怎么写入txt文件 博客
3个回答
2016-07-27 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
定义一个输出文件,然后输出就可以了,具体见下面的代码
import java.io.*;
public class StreamDemo
{
public static void main(String args[])
{
File f = new File("c:\\temp.txt") ;
OutputStream out = null ;
try
{
out = new FileOutputStream(f) ;
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
// 将字符串转成字节数组
byte b[] = "Hello World!!!".getBytes() ;
try
{
// 将byte数组写入到文件之中
out.write(b) ;
}
catch (IOException e1)
{
e1.printStackTrace();
}
try
{
out.close() ;
}
catch (IOException e2)
{
e2.printStackTrace();
}
// 以下为读文件操作
InputStream in = null ;
try
{
in = new FileInputStream(f) ;
}
catch (FileNotFoundException e3)
{
e3.printStackTrace();
}
// 开辟一个空间用于接收文件读进来的数据
byte b1[] = new byte[1024] ;
int i = 0 ;
try
{
// 将b1的引用传递到read()方法之中,同时此方法返回读入数据的个数
i = in.read(b1) ;
}
catch (IOException e4)
{
e4.printStackTrace();
}
try
{
in.close() ;
}
catch (IOException e5)
{
e5.printStackTrace();
}
//将byte数组转换为字符串输出
System.out.println(new String(b1,0,i)) ;
}
}
import java.io.*;
public class StreamDemo
{
public static void main(String args[])
{
File f = new File("c:\\temp.txt") ;
OutputStream out = null ;
try
{
out = new FileOutputStream(f) ;
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
// 将字符串转成字节数组
byte b[] = "Hello World!!!".getBytes() ;
try
{
// 将byte数组写入到文件之中
out.write(b) ;
}
catch (IOException e1)
{
e1.printStackTrace();
}
try
{
out.close() ;
}
catch (IOException e2)
{
e2.printStackTrace();
}
// 以下为读文件操作
InputStream in = null ;
try
{
in = new FileInputStream(f) ;
}
catch (FileNotFoundException e3)
{
e3.printStackTrace();
}
// 开辟一个空间用于接收文件读进来的数据
byte b1[] = new byte[1024] ;
int i = 0 ;
try
{
// 将b1的引用传递到read()方法之中,同时此方法返回读入数据的个数
i = in.read(b1) ;
}
catch (IOException e4)
{
e4.printStackTrace();
}
try
{
in.close() ;
}
catch (IOException e5)
{
e5.printStackTrace();
}
//将byte数组转换为字符串输出
System.out.println(new String(b1,0,i)) ;
}
}
展开全部
使用IO流
1、指定你要写入的路径:如
File file = new File("d:\\a.txt");
2、选择合适的流来操作写入的数据,操作文本的话一般使用字符流,此时比如我们要写入一句“你好”。我们可以选择使用字符缓冲流。
BufferedWriter b = new BufferedWriter();
3、这里因为操作的是一个writer对象,所以我们要用到字节转字符
OutputStreamWriter ou = new OutputStreamWriter(new FileOutputStream(file));
BufferedWriter b = new BufferedWriter(ou);
4、写入操作
b.write("你好");
5、写入完成后关闭
ou.close();
b.close();
1、指定你要写入的路径:如
File file = new File("d:\\a.txt");
2、选择合适的流来操作写入的数据,操作文本的话一般使用字符流,此时比如我们要写入一句“你好”。我们可以选择使用字符缓冲流。
BufferedWriter b = new BufferedWriter();
3、这里因为操作的是一个writer对象,所以我们要用到字节转字符
OutputStreamWriter ou = new OutputStreamWriter(new FileOutputStream(file));
BufferedWriter b = new BufferedWriter(ou);
4、写入操作
b.write("你好");
5、写入完成后关闭
ou.close();
b.close();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用IO流和file的输入、输出流可以将需要的东西输入到指定的文件中
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询