由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 急问如何append double 数据到txt文件
相关主题
How to append something on a file?请教一段代码,关于hashCode()
[转载] create gif/png image in C or java折腾了一天,实在是绝望了,请教请教
How to write a file to the same directory of the class file?新手求助,急急急!!!
问一个blocking IO的程序help "java.lang.NoSuchMethodError"
如何关闭打开的输入输出?Java menu accelerator not working
为什么我的try-with-resources总是提示有unhandled exception?No decent way for input password from command line.
请问一个最初级问题what is the problem?
java新手弱问(eclipse)java rugular expression question
相关话题的讨论汇总
话题: 输出话题: append话题: import
进入Java版参与讨论
1 (共1页)
D*******y
发帖数: 366
1
用FileOutputStream编译不通过,
而用out.writer只能输出字符流。
如何解决?
谢谢!
A**o
发帖数: 1550
2
import

【在 D*******y 的大作中提到】
: 用FileOutputStream编译不通过,
: 而用out.writer只能输出字符流。
: 如何解决?
: 谢谢!

D*******y
发帖数: 366
3
thanks!
But I already import java.io.*;
Do I need do anything else?

【在 A**o 的大作中提到】
: import
D*******y
发帖数: 366
4
I can output with
out.writer
command.
But could not use the first one.

【在 D*******y 的大作中提到】
: thanks!
: But I already import java.io.*;
: Do I need do anything else?

A**o
发帖数: 1550
5
我们不是神仙,看不见你的代码很难解决问题。谢谢。

【在 D*******y 的大作中提到】
: I can output with
: out.writer
: command.
: But could not use the first one.

D*******y
发帖数: 366
6
非常感谢你的帮助!
我在做一个市场买卖双方的模拟。
这个软件的输出部分需要输出每周的历史数据。这样每周的市场和每个交易者的价格,
数量需要输出到不同的文件中。里面含有int, double,char 数据类型。
一下是我学习的一个简单输出代码。能够运行,但是输出文件显示不出来。
package ts;
import java.io.*;
import ts.AppendToFile;
public class Append {
/**
* @param args
*/
public static void main(String[] args) {
String fileName="D:/output/out1.txt";
// TODO Auto-generated method stub
AppendToFile[] file=new AppendToFile[4];

file[1]=new AppendToFile(1);

//Sys
A**o
发帖数: 1550
7
BufferedWriter out = new BufferedWriter(new FileWriter("
outPutFileName", true));
D*******y
发帖数: 366
8
谢谢你啊
我发信到你信箱了。
out.write的语句只能输出字符流,如何输出double 类型啊?

【在 A**o 的大作中提到】
: BufferedWriter out = new BufferedWriter(new FileWriter("
: outPutFileName", true));

c*****t
发帖数: 1879
9
用 PrintStream。

【在 D*******y 的大作中提到】
: 谢谢你啊
: 我发信到你信箱了。
: out.write的语句只能输出字符流,如何输出double 类型啊?

1 (共1页)
进入Java版参与讨论
相关主题
java rugular expression question如何关闭打开的输入输出?
NullPointerException 问题为什么我的try-with-resources总是提示有unhandled exception?
新手请教一个问题请问一个最初级问题
java gc之前有没有办法得到notification?java新手弱问(eclipse)
How to append something on a file?请教一段代码,关于hashCode()
[转载] create gif/png image in C or java折腾了一天,实在是绝望了,请教请教
How to write a file to the same directory of the class file?新手求助,急急急!!!
问一个blocking IO的程序help "java.lang.NoSuchMethodError"
相关话题的讨论汇总
话题: 输出话题: append话题: import