3

我是一个新手,我真的很想学习这个概念,而不仅仅是复制和粘贴代码。我想了解如何准确地使用 Jave IO,但看到我的不同版本的代码感到困惑和失望。

所以我自己做了笔记,想和这里的专家确认一下我是否做对了。这些仅供我自己参考。我知道这并不完美,但如果您能确认它们是否正确,我将不胜感激。

使用 BufferedWriter 和 FileWriter 写入文本文件(作为字符)。缺点是您不能编写原始数据类型。

前任:

BufferedWriter bw= new BufferedWriter (new FileWriter("a.txt", true)); 
String x;
while ((x=bw.readLine())!=null){
bw.newLine();
bw.write(x);
bw.flush();}

使用 BufferedReader 和 FileReader 读取文本文件(作为字符)

前任:

BufferedReader br = new BufferedReader (new FileReader("b.txt")); 
String x;
while ((x=br.readLine())!=null){
System.out.println(x);}

使用 DataOutputStream 和 FileOutputStream 写入文本文件(二进制)。优点是您可以编写原始数据类型以及字符串。

前任:

DataOutputStream dos = new DataOutputStream(new FileOutputStream("out.txt"));
dos.writeInt(cityIdA);    // int cityIdA = 9897;         
dos.writeUTF(cityNameA); //  String cityNameA = "Green Lake City";  
dos.writeInt(cityPopulationA); //   int cityPopulationA = 500000;  
dos.writeFloat(cityTempA); //  float cityTempA = 15.50f; 
dos.flush();

使用 DataInputStream 和 FileInputStream 读取文本文件(二进制)。优点是您可以读取原始数据类型以及字符串。

前任:

DataInputStream dis = new DataInputStream(new FileInputStream("inp.txt"));
int cityId1 =dis.readInt();    // int cityIdA = 9897;         
String cityName1 =dis.readUTF(); //  String cityNameA = "Green Lake City";  
int cityPopulation1 =dis.readInt(); //   int cityPopulationA = 500000;  
float cityTemperature1 =dis.readFloat(); //  float cityTempA = 15.50f; 

实际代码:

import java.io.*; 

class b{

public static void main (String args[]) throws IOException{
int cityIdA = 9897;         
String cityNameA = "Green Lake City"; 
int cityPopulationA = 500000;         
float cityTempA = 15.50f;      

BufferedWriter bw = new BufferedWriter(new FileWriter("shahar.txt"));

bw.write("9897");  
bw.write("Green Lake City"); 
bw.write("500000"); 
bw.write("15.50"); 
bw.flush();             
bw.close(); 

DataOutputStream dos = new DataOutputStream(new FileOutputStream("out.txt"));

dos.writeInt(cityIdA);      
dos.writeUTF(cityNameA);
dos.writeInt(cityPopulationA); 
dos.writeFloat(cityTempA);
dos.flush();

BufferedReader br = new BufferedReader (new FileReader("shahar.txt")); 
String x;
while ((x=br.readLine())!=null){
System.out.println(x);}


DataInputStream dos1 = new DataInputStream(new FileInputStream("out.txt"));
int cityId1 = dos1.readInt();    // int cityIdA = 9897;     
System.out.println( cityId1);
String cityName1 =dos1.readUTF(); //  String cityNameA = "Green Lake City";  
System.out.println(cityName1);
int cityPopulation1 =dos1.readInt(); //   int cityPopulationA = 500000;  
System.out.println(cityPopulation1);
float cityTemperature1 =dos1.readFloat(); //  float cityTempA = 15.50f; 
System.out.println(cityTemperature1);
 }
 }
4

2 回答 2

3

您的代码主观上存在风格问题。我会把你的例子放在这里,就好像我自己写的一样。

示例 2

(出于某种原因,我将其放在示例 1 之前)

BufferedReader br = new BufferedReader (new FileReader("b.txt")); 
String x;

while ((x = br.readLine()) != null)
{ // changed style, but otherwise fine
    System.out.println(x);
}

示例 1

// borrowed reader from example 1
BufferedReader br = new BufferedReader (new FileReader("b.txt")); 
BufferedWriter bw = new BufferedWriter (new FileWriter("a.txt", true)); 
String x;

// this part didn't work.  You were trying to read from a writer, as you write to it.
// if this were an object capable of reading and writing at the same time, you would
// run into issues because they wouldn't be rewinding after each operation and you'd
// end up with a combination of unexpected mirrored lines and garbled crap.

// changed loop to read from reader.  reads data from one file, line by line, and
// writes to another.
while ((x = br.readLine()) != null) 
{
    bw.write(x);  // in the other order, file will start with a blank line
    bw.newLine(); // in this order, file will end with one instead
}
bw.flush(); // its better if this is not in the loop

示例 3 和 4

示例 3 和 4 很好。如果您需要将大量原始类型写入二进制文件,您将使用类似的东西。其他示例更适合阅读文本。

既然你是新手,我也给你一些随机建议:

  • 不要责怪一种语言的缺点,要学会克服它们。(适用于所有语言)
  • 线程并不是所有问题的解决方案。如果您需要多个,请为自己编写一个调度程序。
  • 通常有很多方法可以做同样的事情,但通常一种方法比其他方法更正确。
  • 不要现在写代码,因为你以后会讨厌自己。
  • 您选择使用哪种风格无关紧要,但要坚持下去。也就是说,我不喜欢你的。:)
  • 无论您选择哪种风格,请确保您在任何情况下都能轻松阅读。
  • 你的计算机没有无限的内存,不要写代码假装它有。所有其他资源也是如此。没有人喜欢贪吃。
于 2012-07-31T22:17:43.423 回答
1

我不太确定您的问题的格式是否会收到有益的答案。

我可以说:

“在你的第一个例子中:

BufferedWriter bw= new BufferedWriter (new FileWriter("a.txt", true)); 
String x;
while ((x=bw.readLine())!=null) {
    bw.newLine();
    bw.write(x);
    bw.flush();
}

bw.readLine()是不正确的。BufferedWriter 是一个编写器类 - 它不包含 readLine() 方法。您应该使用 BufferedReader 从文件中读取。

除了明显错误的代码缩进之外,您的其余示例都是“正确的”。

但是从大局来看,这样说并不能真正帮助你。你写问题的方式让我相信你开始学习 java 并且可能对一般的编程很陌生:那很好。但是,我认为这不好:

...[I] was confused and disappointed to see so many different versions of code... So I made my own

这是不好的。虽然看到这么多不同的方式来实现一个目标可能会让人不知所措,但编程没有“正确”的方式来做事(在大多数情况下......不需要与初学者争论语义)。Java API 为您提供了一些方法和工具来做一些事情。在初学者编程的范围内,当涉及到使用方法本身时,你不应该担心什么是“正确的”——你应该简单地熟悉这些方法并理解这些方法可以做一些事情,我可以将它们逻辑地结合在一起来完成一个目标。

您可以查找“如何写入文件”并获得数百个彼此不同的示例 - 当另一个人用谷歌搜索“如何从文件中读取”并偶然发现这个 StackOverflow 问题并阅读您的笔记时会发生什么? 我们可以将您的笔记放在“另一个从文件中读取的稍微不同版本的代码”中。

通常,我会说对如何做这样的事情做一些笔记很好 - 如果你正在学习编程课程并且会逐字测试。在你的情况下,我会劝阻它。我觉得(关键字感觉......我可能是错的)你要编译你的笔记,开始编程,说“我需要从文件中读取一些东西,我该怎么做呢?” 然后从笔记中复制/粘贴代码。那不会教你任何东西。您需要考虑“我知道 BufferedReader 类可用于从文件中读取 - 让我看看 javadocs 并想出一种逻辑方式来应用其方法在这种特定情况下从文件中读取。”

JavaDocs 是您的朋友。如果您不使用“笔记”并简单地编写练习程序以熟悉使用 API,您将学习得更快。我认为这样的“笔记”对于真正成为精通任何语言的程序员会适得其反。

抱歉,如果我以我的方式回答完全偏离了基础。只是看着你。也许逐字记住笔记是你的学习方式。这也很酷。请记住,当您说I would appreciate if you could confirm whether [this code is] correct.“正确”时没有真正的意义。该代码有效。知道代码为什么起作用(或者学习自己运行代码以查看发生了什么并在它不起作用时修复它......)更为重要。

祝你好运!

于 2012-07-31T22:59:46.180 回答