Java 为什么用/r/n 写入内容 readLine 却读不出来? 10
importjava.io.BufferedInputStream;importjava.io.BufferedReader;importjava.io.FileInpu...
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
public class wtf {
public static void main(String[] args) {
String []all=new String[2];
int times=0;
String item=null;
String title=null;
FileInputStream fis = null;
InputStreamReader isr = null;
BufferedReader br = null; //用于包装InputStreamReader,提高处理性能。因为BufferedReader有缓冲的,而InputStreamReader没有。
try {
String str = "";
String str1 = "";
fis = new FileInputStream("C:\\Users\\10363\\Desktop\\data.txt");// FileInputStream
// 从文件系统中的某个文件中获取字节
isr = new InputStreamReader(fis);// InputStreamReader 是字节流通向字符流的桥梁,
br = new BufferedReader(isr);// 从字符输入流中读取文件中的内容,封装了一个new InputStreamReader的对象
while ((str = br.readLine()) != null) {
str1 += str + "\n";
times++;
if(times==1){
item =str1;
//all[0]=item;
System.out.println(item+" item");
continue;
}
if(times==2){
times=0;
title =str1;
//all[1]=title;
System.out.println(title+" title");
}
}
// 当读取的一行不为空时,把读到的str的值赋给str1
//System.out.println(str1);// 打印出str1
} catch (FileNotFoundException e) {
System.out.println("找不到指定文件");
} catch (IOException e) {
System.out.println("读取文件失败");
} finally {
try {
br.close();
isr.close();
fis.close();
// 关闭的时候最好按照先后顺序关闭最后开的先关闭所以先关s,再关n,最后关m
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
这个是读取
out=new FileWriter(lastFile,true);
out.write(infos[5]+"\r\n");
System.out.println("写入成功");
这个是写入 展开
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
public class wtf {
public static void main(String[] args) {
String []all=new String[2];
int times=0;
String item=null;
String title=null;
FileInputStream fis = null;
InputStreamReader isr = null;
BufferedReader br = null; //用于包装InputStreamReader,提高处理性能。因为BufferedReader有缓冲的,而InputStreamReader没有。
try {
String str = "";
String str1 = "";
fis = new FileInputStream("C:\\Users\\10363\\Desktop\\data.txt");// FileInputStream
// 从文件系统中的某个文件中获取字节
isr = new InputStreamReader(fis);// InputStreamReader 是字节流通向字符流的桥梁,
br = new BufferedReader(isr);// 从字符输入流中读取文件中的内容,封装了一个new InputStreamReader的对象
while ((str = br.readLine()) != null) {
str1 += str + "\n";
times++;
if(times==1){
item =str1;
//all[0]=item;
System.out.println(item+" item");
continue;
}
if(times==2){
times=0;
title =str1;
//all[1]=title;
System.out.println(title+" title");
}
}
// 当读取的一行不为空时,把读到的str的值赋给str1
//System.out.println(str1);// 打印出str1
} catch (FileNotFoundException e) {
System.out.println("找不到指定文件");
} catch (IOException e) {
System.out.println("读取文件失败");
} finally {
try {
br.close();
isr.close();
fis.close();
// 关闭的时候最好按照先后顺序关闭最后开的先关闭所以先关s,再关n,最后关m
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
这个是读取
out=new FileWriter(lastFile,true);
out.write(infos[5]+"\r\n");
System.out.println("写入成功");
这个是写入 展开
1个回答
2017-09-25
展开全部
infos是如何定义的?
write应该不是输入字符串的吧
~~~~~~~~~~~~~
write应该不是输入字符串的吧
~~~~~~~~~~~~~
追问
那些都不是问题,写入方法我就留了那几句,主要是写入那个,write 就是写入文件的啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询