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 类型啊?
|