迁移学习 简而言之_简而言之Java.io:22个案例研究

迁移学习 简而言之

这篇文章试图涵盖java.io中的一整套操作。 与与此主题相关的其他书籍和博客相比,我的动机是通过案例研究来展示“操作方法”。 曾经是Java的学生,我意识到学习一种新的程序语言的最有效方法是通过示例:复制并粘贴一段代码,运行它以查看结果,然后尝试逐步修改并重新运行它。 。 因此,我认为这篇文章会有所帮助。

值得注意的是,本文不会涉及任何与java.nio相关的内容,因为我认为这是一个完全不同的主题。

目录

  • 情况0:创建一个新文件
  • 情况1:File中的两个常量
  • 情况2:删除文件
  • 情况3:创建目录
  • 情况4:列出给定目录中的文件和目录
  • 情况5:测试文件是否为文件
  • 情况6:写入RandomAccessFile
  • 情况7:将字节写入文件
  • 情况8:将字节追加到文件
  • 情况9:从文件读取字节
  • 情况10:复制文件
  • 情况11:将字符写入文件
  • 情况12:从文件中读取字符
  • 情况13:从OutputStream转换为FileWriter
  • 情况14:从InputStream转换为FileReader
  • 案例15:使用管道
  • 情况16:将格式化的字符串写入文件
  • 案例17:重定向“标准” IO
  • 情况18:逐行读取文件
  • 案例19:压缩到一个zip文件
  • 案例20:从zip文件中提取
  • 情况21:推回字节

情况0:创建一个新文件

import java.io.File;
public class FileOperationTest {public static void main(String[] args) {File f = new File("helloworld.txt");try {f.createNewFile();} catch (Exception e) {e.printStackTrace();}}
}

输出: 如果之前没有“ helloword.txt”,则在工作目录中创建一个新的空文件。

情况1:File中的两个常量

import java.io.File;
public class FileOperationTest {public static void main(String[] args) {System.out.println(File.separator);System.out.println(File.pathSeparator);}
}

输出:

/
:

我得到上面的输出,因为我正在Linux上工作。 如果使用Windows,则输出应为\; 。 可以看出,出于可移植性和鲁棒性的目的,应始终建议使用这两个常量。

情况2:删除文件

import java.io.File;
public class FileOperationTest {public static void main(String[] args) {File f = new File("helloworld.txt");if (f.exists()) {if (!f.delete()) {System.out.println("the file cannot be deleted.");}} else {System.out.println("the file does not exist.");}}
}

情况3:创建目录

import java.io.File;
public class FileOperationTest {public static void main(String[] args) {File f = new File("hello");f.mkdir();}
}

情况4:列出给定目录中的文件和目录

import java.io.File;
public class FileOperationTest {public static void main(String[] args) {File f = new File(".");for (String str : f.list()) {System.out.println(str);}}
}

输出:我正在使用Eclipse

.settings
.classpath
.project
src
bin

文件list()返回一个字符串数组。 如果您更喜欢File的数组,请使用FilelistFiles()

import java.io.File;
public class FileOperationTest {public static void main(String[] args) {File f = new File(".");for (File subFile : f.listFiles()) {System.out.println(subFile.getName());}}
}

情况5:测试文件是否为文件

import java.io.File;
public class FileOperationTest {public static void main(String[] args) {File f = new File("helloworld.txt");if (f.isFile()) {System.out.println("YES");} else {System.out.println("NO");}}
}

File结合。 listFiles() ,我们可以列出给定目录及其子目录中的所有文件。

import java.io.File;public class FileOperationTest {public static void main(String[] args) {File f = new File(".");listFiles(f);}private static void listFiles(File f) {if (f.isFile()) {System.out.println(f.getName());return;}for (File subFile : f.listFiles()) {listFiles(subFile);}}
}

输出:案例4进行比较以查看差异

org.eclipse.jdt.core.prefs
.classpath
.project
FileOperationTest.java
FileOperationTest.class

情况6:写入RandomAccessFile

import java.io.IOException;
import java.io.RandomAccessFile;public class FileOperationTest {public static void main(String[] args)throws IOException {RandomAccessFile file = new RandomAccessFile("helloworld.txt", "rw");file.writeBytes("hello world!");file.writeChar('A');file.writeInt(1);file.writeBoolean(true);file.writeFloat(1.0f);file.writeDouble(1.0);file.close();}
}

如果使用文本编辑器打开文件,则会发现乱码,除了第一个hello world!A (请注意,在“ hello world!”末尾的char A )。 这是因为RandomAccessFile仅在文件中写入字节数组。

情况7:将字节写入文件

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;public class FileOperationTest {public static void main(String[] args)throws IOException {OutputStream out = new FileOutputStream("helloworld.txt");String str = "hello world!";out.write(str.getBytes());out.close();}
}

这次您可以看到“你好,世界!” 在文件中。 当然,您可以逐字节写入OutputStream ,但效果不佳:

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;public class FileOperationTest {public static void main(String[] args)throws IOException {OutputStream out = new FileOutputStream("helloworld.txt");String str = "hello world!";for (byte b : str.getBytes()) {out.write(b);}out.close();}
}

情况8:将字节追加到文件

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;public class FileOperationTest {public static void main(String[] args)throws IOException {OutputStream out = new FileOutputStream("helloworld.txt", true);String str = "hello world!";out.write(str.getBytes());out.close();}
}

输出: hello world!hello world!

情况9:从文件读取字节

import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;public class FileOperationTest {public static void main(String[] args)throws IOException {InputStream in = new FileInputStream("helloworld.txt");byte[] bs = new byte[1024];int len = -1;while ((len = in.read(bs)) != -1) {System.out.println(new String(bs, 0, len));}in.close();}
}

InputStream 。 如果到达文件末尾, read()将返回-1。 否则,它将返回读入缓冲区的字节总数。

情况10:复制文件

简单地结合案例79 ,我们将获得复制功能。

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;public class Copy {public static void main(String[] args)throws IOException {if (args.length != 2) {System.out.println("java Copy SOURCE DEST");System.exit(1);}InputStream input = new FileInputStream(args[0]);OutputStream output = new FileOutputStream(args[1]);int len = 0;byte bs[] = new byte[1024];while ((len = input.read(bs)) != -1) {output.write(bs, 0, len);}input.close();output.close();}
}

情况11:将字符写入文件

import java.io.FileWriter;
import java.io.IOException;
import java.io.Writer;public class FileOperationTest {public static void main(String[] args)throws IOException {Writer out = new FileWriter("helloworld.txt");String str = "hello world!";out.write(str);out.close();}
}

对于上述情况,您将获得与案例7相同的结果。 那么区别是什么呢? FileWriter用于编写字符流。 它将使用默认的字符编码和默认的字节缓冲区大小。 换句话说,为方便起见,它是FileOutputStream的包装器类。 因此,要自己指定这些值,请考虑使用FileOutputStream

情况12:从文件中读取字符

import java.io.FileReader;
import java.io.IOException;
import java.io.Reader;public class FileOperationTest {public static void main(String[] args)throws IOException {Reader in = new FileReader("helloworld.txt");char cs[] = new char[1024];int len = -1;while ((len = in.read(cs)) != -1) {System.out.println(new String(cs, 0, len));}in.close();}
}

是否使用字节流或字符流? 真的要看 两者都有缓冲区。 InputStream / OutputStream提供了更大的灵活性,但是会使您的“简单”程序变得复杂。 另一方面,FileWriter / FileReader提供了一个整洁的解决方案,但是您失去了控制权。

情况13:从OutputStream转换为FileWriter

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.Writer;public class FileOperationTest {public static void main(String[] args)throws IOException {Writer out = new OutputStreamWriter(new FileOutputStream("helloworld.txt"));out.write("hello world!");out.close();}
}

您可以指定字符集,而不是使用默认字符编码。 例如,

Writer out = new OutputStreamWriter(new FileOutputStream("helloworld.txt"), "utf8");

情况14:从InputStream转换为FileReader

import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;public class FileOperationTest {public static void main(String[] args)throws IOException {Reader in = new InputStreamReader(new FileInputStream("helloworld.txt"));char cs[] = new char[1024];int len = -1;while ((len = in.read(cs)) != -1) {System.out.println(new String(cs, 0, len));}in.close();}
}

案例15:使用管道

以下代码创建两个线程,一个生产者在一端将某些内容写入管道,而另一个消费者从另一端从该管道读取内容。 要创建管道,我们需要分别创建PipedInputStreamPipedOutputStream ,并使用output.connect(input)或通过其构造函数进行连接。 在此程序中,我有意先启动Consumer线程,并在启动Producer线程之前让整个程序Hibernate1秒。 这将显示管道确实起作用。 值得注意的是,我关闭了Producer中的管道,因为“ 写入流的线程应始终在终止之前关闭OutputStream。 ”如果我们删除out.close()行,将抛出IOException

java.io.IOException: Write end deadat java.io.PipedInputStream.read(PipedInputStream.java:311)at java.io.PipedInputStream.read(PipedInputStream.java:378)at java.io.InputStream.read(InputStream.java:101)at foo.Consumer.run(FileOperationTest.java:58)at java.lang.Thread.run(Thread.java:701)
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;public class FileOperationTest {public static void main(String[] args)throws IOException, InterruptedException {PipedInputStream input = new PipedInputStream();PipedOutputStream output = new PipedOutputStream();output.connect(input);Producer producer = new Producer(output);Consumer consumer = new Consumer(input);new Thread(consumer).start();Thread.sleep(1000);new Thread(producer).start();}
}class Producer implements Runnable {private final OutputStream out;public Producer(OutputStream out) {this.out = out;}@Overridepublic void run() {String str = "hello world!";try {out.write(str.getBytes());out.flush();out.close();} catch (Exception e) {e.printStackTrace();}}
}class Consumer implements Runnable {private final InputStream in;public Consumer(InputStream in) {this.in = in;}@Overridepublic void run() {byte[] bs = new byte[1024];int len = -1;try {while ((len = in.read(bs)) != -1) {System.out.println(new String(bs, 0, len));}} catch (IOException e) {e.printStackTrace();}}
}

情况16:将格式化的字符串写入文件

PrintStream添加了一些功能,可以方便地打印各种数据值的表示形式。 格式字符串的语法与C几乎相同。

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintStream;public class FileOperationTest {public static void main(String[] args)throws IOException {PrintStream print = new PrintStream(new FileOutputStream("helloworld.txt"));print.printf("%s %s!", "hello", "world");print.close();}
}

案例17:重定向“标准” IO

在Java中,标准输出和错误输出均为PrintStream 。 标准输入是InputStream 。 因此,我们可以自由地重新分配它们。 以下代码将标准输出重定向到错误输出。

public class FileOperationTest {public static void main(String[] args) {System.out.println("hello world!");System.setOut(System.err);System.out.println("hello world!");}
}

输出:在Eclipse中,红色文本表示错误消息

hello world!hello world!

情况18:逐行读取文件

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;public class FileOperationTest {public static void main(String[] args)throws IOException {BufferedReader reader = new BufferedReader(new FileReader("helloworld.txt"));String str = null;while ((str = reader.readLine()) != null) {System.out.println(str);}reader.close();}
}

案例19:压缩到一个zip文件

import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;public class FileOperationTest {public static void main(String[] args)throws IOException {ZipOutputStream zipOut = new ZipOutputStream(new FileOutputStream("helloworld.zip"));String str = "hello world!";for (int i = 0; i < 3; i++) {zipOut.putNextEntry(new ZipEntry("helloworld" + i + ".txt"));zipOut.write(str.getBytes());zipOut.closeEntry();}zipOut.close();}
}

上面的代码创建了一个zip文件,并放置了三个文件,分别名为“ helloworld0.txt”,“ helloworld1.txt”和“ helloworld2.txt”,每个文件都包含内容“ hello world!”。

案例20:从zip文件中提取

import java.io.FileInputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;public class FileOperationTest {public static void main(String[] args)throws IOException {ZipInputStream zipIn = new ZipInputStream(new FileInputStream("helloworld.zip"));ZipEntry entry = null;byte bs[] = new byte[1024];while ((entry = zipIn.getNextEntry()) != null) {// get file nameSystem.out.printf("file: %s content: ", entry.getName());int len = -1;// read current entry to the bufferwhile((len=zipIn.read(bs)) != -1) {System.out.print(new String(bs, 0, len));}System.out.println();}zipIn.close();}
}

输出:

file: helloworld0.txt content: hello world!
file: helloworld1.txt content: hello world!
file: helloworld2.txt content: hello world!

情况21:推回字节

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.PushbackInputStream;public class FileOperationTest {public static void main(String[] args)throws IOException {PushbackInputStream push = new PushbackInputStream(new ByteArrayInputStream("hello, world!".getBytes()));int temp = 0;while ((temp = push.read()) != -1) {if (temp == ',') {push.unread('.');}System.out.print((char) temp);}}
}

上面的代码在读取逗号后按了一个点,因此输出为

hello,. world!

但是,如果您尝试向后推更多字符,例如push.unread("(...)".getBytes()); ,您将获得IOException :推回缓冲区已满。 这是因为推回缓冲区的默认大小为1。要指定更大的容量,请使用构造函数PushbackInputStream(InputStream in, int size) ,例如

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.PushbackInputStream;public class FileOperationTest {public static void main(String[] args)throws IOException {PushbackInputStream push = new PushbackInputStream(new ByteArrayInputStream("hello, world!".getBytes()), 10);int temp = 0;while ((temp = push.read()) != -1) {if (temp == ',') {push.unread("(...)".getBytes());}System.out.print((char) temp);}}
}

输出:

hello,(...) world!

参考: 简而言之 Java.io:PGuru博客上来自我们JCG合作伙伴 Peng Yifan的 22个案例研究 。

翻译自: https://www.javacodegeeks.com/2013/12/java-io-in-nutshell-22-case-studies.html

迁移学习 简而言之

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/345723.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

对采样的理解

1. 什么是采样 我们知道了一个变量的分布&#xff0c;要生成一批服从这个分布的样本&#xff0c;这个过程就叫采样。 听起来好像很简单&#xff0c;对一些简单的分布函数确实如此&#xff0c;比如&#xff0c;均匀分布、正太分布&#xff0c;但只要分布函数稍微复杂一点&#…

如何避免Java线程中的死锁?

如何避免Java死锁&#xff1f; 是Java面试中最受欢迎的问题之一&#xff0c;也是本季多线程的风格&#xff0c;主要是在高层提出&#xff0c;并带有很多后续问题。 尽管问题看起来很基础&#xff0c;但是一旦您开始深入研究&#xff0c;大多数Java开发人员就会陷入困境。 面试…

Approximation and fitting、Statistical estimation

一、Approximation and fitting 1. 拟合与回归的区别 回归分析&#xff1a;是一种统计学上分析数据的方法&#xff0c;目的在于了解两个或多个变量间是否相关、相关方向与强度&#xff0c;并建立数学模型以便观察特定变量来预测研究者感兴趣的变量。 拟合&#xff1a;是一种把…

Probability(概率) vs Likelihood(似然)

1. 先验概率&#xff0c;条件概率与后验概率 2. Probability(概率) vs Likelihood(似然) Probabiity&#xff08;概率&#xff09;&#xff1a;给定某一参数值&#xff0c;求某一结果的可能性 Likelihood&#xff08;似然&#xff09;&#xff1a;给定某一结果&#xff0c;求某…

【渝粤题库】国家开放大学2021春1334纳税筹划题目

试卷代号&#xff1a;1334 2021年春季学期期末统一考试 纳税筹划 试题&#xff08;开卷&#xff09; 2021年7月 一、单项选择题&#xff08;将每题4个选项中的惟一正确答案的字母序号填入括号。每小题2分&#xff0c;共20分&#xff09; 1.税收筹划的主体是&#xff08; &#…

线性回归 逻辑回归

分类就是到底是1类别还是0类别。 回归就是预测的不是一个类别的值&#xff0c;而是一个具体的值&#xff0c;具体借给你多少钱哪&#xff1f; 一、回归分析 回归分析&#xff08;英语&#xff1a;Regression Analysis&#xff09;是一种统计学上分析数据的方法&#xff0c;目…

【渝粤题库】国家开放大学2021春1335幼儿园课程与活动设计题目

试卷代号&#xff1a;1335 2021年春季学期期末统一考试 幼儿园课程与活动设计 试题 2021年7月 一、单项选择题&#xff08;每小题3分.共30分&#xff09; 1.课程是指学生体验到的意义&#xff0c;这是&#xff08; &#xff09;对课程的定义。 A.课程即教学科目 B.课程即学习者…

rmi full gc问题_RMI强制Full GC每小时运行一次

rmi full gc问题在我职业生涯中进行的所有故障排除练习中&#xff0c;我都感觉到&#xff0c;随着时间的推移&#xff0c;我所追寻的错误在不断演变&#xff0c;变得越来越卑鄙和丑陋。 也许仅仅是我的年龄开始了。这个特别的Heisenbug –看起来像这篇帖子一样&#xff0c;再次…

【渝粤题库】国家开放大学2021春1349学前教育科研方法答案

试卷代号&#xff1a;1349 2021年春季学期期末统一考试 学前教育科研方法 试题答案及评分标准&#xff08;开卷&#xff09; &#xff08;供参考&#xff09; 2021年7月 一、单选题&#xff08;每题4分&#xff0c;共20分&#xff09; 1.D 2.D 3.C 4.B 5.A 二、判断题&#xff…

联邦学习 Federated Learning

应该很多人听过但是始终都没懂啥是联邦学习&#xff1f;百度一下发现大篇文章都说可以用来解决数据孤岛&#xff0c;那它又是如何来解决数据孤岛问题的&#xff1f; 1、联邦学习的背景介绍 近年来人工智能可谓风风火火&#xff0c;掀起一波又一波浪潮&#xff0c;从人脸识别、…

【渝粤题库】国家开放大学2021春1356高级英语听说(2)题目

试卷代号&#xff1a; 1356 2021年春季学期期末统一考试 高级英语听说(2) 试题 2021年7月 注意事项 一、将你的学号、姓名及分校&#xff08;工作站&#xff09;名称填写在答题纸的规定栏内。考试结束后&#xff0c;把试卷和答题纸放在桌上。试卷和答题纸均不得带出考场。 二、…

【渝粤题库】国家开放大学2021春1374班级管理题目

试卷代号&#xff1a;1374 2021年春季学期期末统一考试 班级管理 试题&#xff08;开卷&#xff09; 2021年7月 一、简答题&#xff08;每题12分&#xff0c;共36分&#xff09; 1.简述班集体建设的理念。 2&#xff0e;简述学生学习指导中的诊疗模式。 3&#xff0e;简述班主…

优化器算法Optimizer详解(BGD、SGD、MBGD、Momentum、NAG、Adagrad、Adadelta、RMSprop、Adam)

本文将梳理&#xff1a; 每个算法的梯度更新规则和缺点 为了应对这个不足而提出的下一个算法 超参数的一般设定值 几种算法的效果比较 选择哪种算法 0.梯度下降法深入理解 以下为个人总结&#xff0c;如有错误之处&#xff0c;各位前辈请指出。 对于优化算法&#xff0c;优化…

【渝粤题库】国家开放大学2021春1396药事管理与法规(本)题目

试卷代号&#xff1a;1396 2021年春季学期期末统一考试 药事管理与法规&#xff08;本&#xff09; 试题 2021年7月 一、单选题&#xff08;选出一个最佳答案填入括号.35题&#xff0c;每题2分&#xff0c;共70分&#xff09; 1.&#xff08; &#xff09;就是药学事业的简称&a…

gradle构建_指定Gradle构建属性

gradle构建属性是用于轻松自定义Gradle构建和Gradle环境的宝贵工具。 我将在本文中演示一些用于指定Gradle构建中使用的属性的方法。 Gradle支持项目属性和系统属性 。 这篇文章中有趣的是两者之间的主要区别是如何访问它们。 项目属性更有助于按名称直接访问&#xff0c;而系…

【渝粤题库】国家开放大学2021春1439临床药理学题目

试卷代号&#xff1a;1439 2021年春季学期期末统一考试 临床药理学 试题 2021年7月 一、单项选择题&#xff08;选择一个最佳选项&#xff0c;每题2分&#xff0c;共80分&#xff09; 1.临床药理学研究的内容是&#xff08; &#xff09;。 A.临床药效学研究 B.临床药物代谢动力…

线性代数之——行列式及其性质

https://zhuanlan.zhihu.com/p/50912180

【渝粤题库】国家开放大学2021春1542投资学题目

试卷代号&#xff1a;1542 2021年春季学期期末统一考试 投资学 试题 2021年7月 一、名词配伍&#xff08;请将你认为的正确答案的字母填入该题后的括号内。每小题3分&#xff0c;共15分&#xff09; 1.长期投资&#xff08; &#xff09; 2.同业拆借市场&#xff08; &#xff…

Apache Commons ArrayUtils.toString(Object)与JDK Arrays.toString(Object)

Apache Commons Lang提供了一个ArrayUtils类&#xff0c;其中包含toString&#xff08;Object&#xff09;方法&#xff0c;该方法“将数组作为字符串输出”。 在本文中&#xff0c;我将研究当JDK提供Arrays.toString&#xff08;Object []&#xff09;方法[以及原始类型数组的…

【渝粤题库】国家开放大学2021春1340古代小说戏曲专题题目

试卷代号&#xff1a;1340 2021年春季学期期末统一考试 古代小说戏曲专题 试题&#xff08;开卷&#xff09; 2021年7月 一、选择题&#xff08;每题1分&#xff0c;共10分&#xff09; 1.长篇小说《海上花列传》在题材类型上属于&#xff08; &#xff09;。 A.历史演义小说 B…