- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个将信息存储到二叉树中的程序。
我正在尝试使用 PrintWriter
将所有信息打印到文本文件中,这在以前的情况下对我有用,但这次我没有运气。
必须通过对象在节点中调用信息。我已经调试并确定树中节点的放置工作正常,因此问题在于打印到文件。
最后要注意的是,如果我通过 System.out 打印到控制台,它会完美打印。
import java.io.*;
public class GALABST
{
public static void main(String[] args) throws IOException
{
Tree directory = new Tree();
InputData newPerson1 = new InputData("luca", "galati", "asdasda", "sadfasdf");
directory.insert(newPerson1);
InputData newPerson2 = new InputData("sdfasf", "blackman", "asdasda", "sadfasdf");
directory.insert(newPerson2);
InputData newPerson3 = new InputData("fsdgdfg", "kramer", "asdasda", "sadfasdf");
directory.insert(newPerson3);
InputData newPerson4 = new InputData("dsafgas", "wallace", "asdasda", "sadfasdf");
directory.insert(newPerson4);
InputData newPerson5 = new InputData("asdfasdfasdf", "dangelo", "asdasda",
"sadfasdf");
directory.insert(newPerson5);
InputData newPerson6 = new InputData("sfasdasfas", "alla", "asdasda", "sadfasdf");
directory.insert(newPerson6);
InputData newPerson7 = new InputData("hfdhsds", "eeves", "asdasda", "sadfasdf");
directory.insert(newPerson7);
File outputFile = new File ("Contacts.txt");
outputFile.delete();
directory.print();
}
}
class InputData
{
String firstName, lastName, address, phoneNumber;
InputData (String fN, String lN, String a, String pN)
{
firstName = fN;
lastName = lN;
address = a;
phoneNumber = pN;
}
}
class Tree
{
private Node root;
class Node
{
InputData inputData;
Node leftChild, rightChild;
Node(InputData iD)
{
inputData = iD;
this.leftChild = null;
this.rightChild = null;
}
}
void insert(InputData inputData)
{
root = insert(root, inputData);
}
Node insert(Node root, InputData inputData)
{
if (root == null)
{
root = new Node(inputData);
return root;
}
if (root.inputData.lastName.compareTo(inputData.lastName) < 0)
{
root.rightChild = insert(root.rightChild, inputData);
}
else if (root.inputData.lastName.compareTo(inputData.lastName) > 0)
{
root.leftChild = insert(root.leftChild, inputData);
}
else
{
if (root.inputData.firstName.compareTo(inputData.firstName) < 0)
{
root.rightChild = insert(root.rightChild, inputData);
}
else if (root.inputData.firstName.compareTo(inputData.firstName) > 0)
{
root.leftChild = insert(root.leftChild, inputData);
}
else
{
System.out.println("Info already present in contacts");
}
}
return root;
}
public void print() throws IOException
{
print(root);
}
private void print(Node root) throws IOException
{
PrintWriter writer = new PrintWriter(new FileWriter("Contacts.txt"), true);
if(root != null)
{
print(root.leftChild);
writer.write(root.inputData.firstName + " " + root.inputData.lastName + " " +
root.inputData.address + " " + root.inputData.phoneNumber);
print(root.rightChild);
}
writer.close();
}
}
任何可以提供帮助的人,我将不胜感激。
最佳答案
您的 print
方法的问题是为写入文件第一行的每个调用创建一个新的 PrintWriter
实例,因此在每个 结束时>PrintWriter
实例它会覆盖文件的第一行。避免这种行为的一种方法是创建一个 PrintWriter
并将其作为参数传递,如下所示:
public void print() throws IOException
{
PrintWriter writer = new PrintWriter(new FileWriter("Contacts.txt"), true);
print(root, writer);
writer.close();
}
private void print(Node root, PrintWriter writer) throws IOException
{
if(root != null)
{
print(root.leftChild, writer);
writer.write(root.inputData.firstName + " " + root.inputData.lastName + " " +
root.inputData.address + " " + root.inputData.phoneNumber + "\n"); <-- added \n for clarity
print(root.rightChild, writer);
}
}
关于java - PrintWriter 类未按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61443352/
在这个程序中,第三个字符串永远不会被打印出来。为什么? (此 Java 程序在 Ubuntu 10.10 上的 Eclipse Indigo 上运行。) import java.io.PrintWri
我已经使用 Java 执行任务和支持工具有一段时间了,但我从未弄清楚如何在一个类中使用 PrintWriter ,然后我可以从另一个类中使用它,例如,我我有几个要解析的 XML 文件,然后从单个输入源
Java PrintWriter 方法printf 和format 之间有什么区别吗? 文档说 printf 是一种方便的方法,但如果它的行为与 format 完全一致,所以我不明白它有什么方便之处。
我正在处理一个服务器-客户端程序集,但现在我遇到了协议(protocol)问题,因为 println 语句末尾的新行混淆了元数据。 换句话说,我需要打印到 PrintWriter,末尾不带新行。我尝试
我想知道有没有可能做 new PrintWriter(new BufferedWriter(new PrintWriter(s.getOutputStream, true))) 在 Java 中,s
PrintWriter(OutputStream out) 此方法不会自动刷新行。 PrintWriter(OutputStream out, boolean autoFlush) 此方法执行自动行冲
我只是想将二维数组“拼图”写入文件。我有一个双 for 循环,它读取数组中的每个“char”值,并将它们写入文件。我似乎无法在我的代码中找到错误。该文件说它在我运行程序时已被修改,但它仍然是空白的。谢
我正在尝试从数据库写入一个大文件文本,大约 200 万行。我观察到,当 PrintWriter 打印 (println()) 行时,文件大小始终为 0 字节。流关闭后文件具有大小数据。它导致所有数据首
public PrintWriter(OutputStream out, boolean autoFlush) : out - An output stream autoFlush - A boole
我的PrintWriter对象编写器的print()方法不起作用,我导入了所有适当的类,但CSV文件一直显示为空白。谁能告诉我为什么? public class StateStats { st
我在这里遇到一个问题:我让这个程序打印 0 到 1000 之间的所有偶数,但是在 friend 做了一些更改之后,它现在只打印“0”。我已经使用它一段时间了,无法弄清楚这是循环问题还是打印机问题。我从
try{ pw = new PrintWriter("C:\\Users\\SDSAD\\Desktop\\java\\file.txt"); }catch(Exception exc){
与我的问题相关的代码功能的主要摘要:该代码采用国会成员数组并以两种不同的方法对它们进行排序;一种按名字排序,一种按平均支持率排序。然后,代码将两个新排序的数组输出到 txt 文件中。 我正在处理的问题
我正在尝试解析一些链接,然后将信息存储在文本文件中,我拥有应在列表中解析的所有链接,但是在解析和存储有关 100 个链接的信息后,我收到了我真的无法理解的错误为什么会发生这种情况,这是我的代码: fo
我真的不明白问题出在哪里。我想将字符打印到文本文件中,并且我使用 printWriter 来执行相同的操作。如果文件有一个“;”,我想用一个新行替换它,这就是我正在做的, public static
我的问题非常简单,如果我有一个长字符串,其中有很多“\n”换行符,即: strings = "Hey\nThere\nFriend\n" 并使用 Java 中的 PrintWriter 执行以下操作:
我有一个将信息存储到二叉树中的程序。 我正在尝试使用 PrintWriter 将所有信息打印到文本文件中,这在以前的情况下对我有用,但这次我没有运气。 必须通过对象在节点中调用信息。我已经调试并确定树
This question already has answers here: PrintWriter writes only partial text (5 个回答) 7 个月前关闭。 我在某个网站
您好,正在开发一个将数据写入文件的小程序。我使用 if else 语句进行验证,因此我需要在单独的方法中使用 PrintWriter 和 FileWriter 类/声明。然后我使用主类的构造函数调用此
我需要打印 100 多行数据和统计数据。我正在使用: PrintWriter p = new PrintWriter(fileName); 之所以大约有 100 行,是因为我需要打印到系统和文件(每个
我是一名优秀的程序员,十分优秀!