java实现输入输出流代码分享
作者:hebedich 时间:2023-11-18 01:03:45
1,编写一个程序,读取文件test.txt的内容并在控制台输出。如果源文件不存在,则显示相应的错误信息。
package src;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class Test {
public static void main(String[] args) {
File f = new File("src\\test.txt");//文件在src名为test.txt中
try {
FileReader fr = new FileReader(f);//将文件读取到内容中
int m;
while((m=fr.read())!=-){
System.out.print((char)(m));
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
2,编写一个程序实现如下功能,从当前目录下的文件fin.txt中读取80个字节(实际读到的字节数可能比80少)并将读来的字节写入当前目录下的文件fout.txt中
package src;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
public class Test {
public static void main(String[] args) {
File f = new File("src\\fin.txt");//src下fin.txt文件
File f = new File("src\\fout.txt");//src下fout.txt文件
try {
FileInputStream fis = new FileInputStream(f);
FileOutputStream fos = new FileOutputStream(f);
byte[] temp = new byte[];//定义一个字节数组
fis.read(temp);//读到内存中
fos.write(temp);//写到文件
fis.close();
fos.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
3,使用java的输入/输出流技术将一个文本文件的内容按行读出,每读出一行就顺序添加行号,并写入到另一个文件中。
package src;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
public class Test {
public static void main(String[] args) {
File f = new File("src\\fin.txt");//src下fin.txt文件
File f = new File("src\\fout.txt");//src下fout.txt文件
try {
FileReader fr = new FileReader(f);
FileWriter fw = new FileWriter(f);
BufferedReader br = new BufferedReader(fr);
BufferedWriter bw = new BufferedWriter(fw);
String temp;
int i=;
while((temp=br.readLine())!=null){
bw.write(i+","+temp);
bw.newLine();//换行
i++;
}
bw.flush();//把缓冲区内容写到文件
br.close();
bw.close();
br.close();
bw.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
4,编写一个程序,接收从键盘输入的数据,并把从键盘输入的内容写到input.txt文件中,如果输入"quit",则程序结束。
package src;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
File f = new File("src\\input.txt");
try {
FileWriter fw = new FileWriter(f);
Scanner scanner = new Scanner(System.in);
String temp;
while(!((temp=scanner.nextLine()).equals("quit"))){
fw.write(temp);
}
fw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
5,编写一个程序实现如下功能,文件fin.txt是无行结构(无换行符)的汉语文件,从fin中读取字符,写入文件fou.txt中,每40个字符一行(最后一行可能少于40个字)
package src;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
public class Test {
public static void main(String[] args) {
File f=new File("src\\fin.txt");
File f=new File("src\\fout.txt");
try {
FileReader fr=new FileReader(f);
FileWriter fw=new FileWriter(f);
char temp[]=new char[];
int len;
while((len=fr.read(temp))!=-)
{
if(len==)
fw.write(new String(temp)+"\n");
else
fw.write(temp, , len);
}
fr.close();
fw.close();
} catch (FileNotFoundException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
} catch (IOException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
}
标签:java,输入输出流
0
投稿
猜你喜欢
Spring Boot项目实战之拦截器与过滤器
2022-08-04 15:55:31
Android实现webview实例代码
2022-05-28 13:32:32
一文详解Java中流程控制语句
2023-11-26 11:39:49
java 数据结构之删除链表中的元素实例代码
2022-03-28 00:51:11
C#中神器类BlockingCollection的实现详解
2022-10-13 07:41:02
Java面试题冲刺第二十三天--分布式
2023-09-24 07:30:43
Spring Data JPA中 in 条件参数的传递方式
2023-11-08 06:45:47
详解Java编程的Observer观察者设计模式
2023-11-10 04:06:07
如何在WorkManager中处理异步任务详解
2021-09-12 14:05:29
mybatis中映射文件(mapper)中的使用规则
2021-06-28 20:09:08
ViewPager打造轮播图Banner/引导页Guide
2022-06-01 13:56:51
Spring-Bean创建对象的步骤方式详解
2023-04-12 22:00:47
新手小白看过来学JAVA必过IO流File字节流字符流
2022-09-22 07:42:02
C#获取打印机列表方法介绍
2022-07-29 02:54:38
详解Spring Boot 属性配置和使用
2023-01-20 02:02:22
android教程之service使用方法示例详解
2023-05-08 03:48:21
详解Mybatis是如何解析配置文件的
2023-10-15 23:23:40
C#设置Word文档背景的三种方法(纯色/渐变/图片背景)
2022-07-08 01:33:09
android使用SwipeRefreshLayout实现ListView下拉刷新上拉加载
2022-07-15 08:39:50
深入讲解Java Maven配置
2022-07-01 05:09:21