永发信息网

java:目录下D:\Test\1.txt 文件,将其下内容D:\Test\1.txt (The system cannot find the file specifi

答案:5  悬赏:0  手机版
解决时间 2021-01-10 20:09
  • 提问者网友:听门外雪花风
  • 2021-01-10 16:31
java:目录下D:\Test\1.txt 文件,将其下内容D:\Test\1.txt (The system cannot find the file specifie
最佳答案
  • 五星知识达人网友:杯酒困英雄
  • 2021-01-10 17:39
import java.io.File;
import java.io.IOException;
import java.io.FileOutputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;

public class StreamTest {

public static void main(String[] args) {
StreamTest st = new StreamTest();
String writeStr = "Hello World!\r\n你好!";
String fileName = "outFile.txt";
st.OutputTest(fileName,writeStr);
st.InputTest(fileName);
}

//字节-读
private void InputTest(String fileName) {
File f = createFile(fileName);
FileInputStream fis;
byte[] b = new byte[100];
try {
System.out.println("创建输入流...");
fis = new FileInputStream(f);
System.out.println("创建输入流完成");
System.out.println("开始读取...");
fis.read(b);
System.out.println("读取完成");
String str = new String(b);
System.out.println("读取内容输出:\n"+str);
fis.close();
}catch(FileNotFoundException e) {
System.out.println("文件没有找到");
}catch(IOException e) {
System.out.println("读取失败");
}
}

//字节-写
private void OutputTest(String fileName,String text) {
File f = createFile(fileName);
FileOutputStream fos;
try{
System.out.println("创建输出流...");
fos = new FileOutputStream(f);
System.out.println("创建输出流完成");
byte[] testBArray = text.getBytes();
System.out.println("开始写数据...");
fos.write(testBArray);
fos.flush();
System.out.println("写数据完成");
fos.close();
}catch(FileNotFoundException e) {
System.out.println("文件没有找到");
e.printStackTrace();
}catch(IOException e) {
e.printStackTrace();
}
}

//创建文件
private File createFile(String fileName) {
File f = new File(fileName);
if(!f.exists()) {
System.out.println("文件不存在");
try{
System.out.println("创建文件...");
f.createNewFile();
System.out.println("创建文件完成");
}catch(IOException e) {
System.out.println("文件创建失败");
e.printStackTrace();
}
}else {
System.out.println("文件已经存在");
}
return f;
}

}

字符流的话改成FileWriter(),FileReader()就好啦!
不懂加:百度HI!^0^
全部回答
  • 1楼网友:行路难
  • 2021-01-10 21:02
jdk 是不是装的有问题追问不清楚,其他程序运行挺好。
  • 2楼网友:洒脱疯子
  • 2021-01-10 20:21
byte[] buffer = new byte[1024]; 有问题吧。
  • 3楼网友:有你哪都是故乡
  • 2021-01-10 19:41
文件D:\Test\1.txt是否存在?
  • 4楼网友:春色三分
  • 2021-01-10 18:22
这异常不是很明显。。。系统找不到指定的文件
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯