This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / 手边没有api,诚心请教个简单问题: java中用FileOutputStream写一个文件时,怎么把它放到我想指定的路径下, 例如存到 C:\MyDocument\里??
-rlm007(厨房里的科学家);
2004-5-21
(#1733029@0)
-
既然能上网,怎么能说没有API ->
-xanada(㊣流水);
2004-5-21
(#1733040@0)
-
不好意思,正在线看API,狠命地搜索了一翻,还没有找到答案..
-rlm007(厨房里的科学家);
2004-5-21
(#1733043@0)
-
new FileOutputStream(new File(" C:\\MyDocument\\"));
-canadiantire(算了,不戒了);
2004-5-21
(#1733052@0)
-
一定要用fileoutputstream吗?try {
BufferedWriter out = new BufferedWriter(new FileWriter("outfilename"));
out.write("aString");
out.close();
} catch (IOException e) {
}
-xanada(㊣流水);
2004-5-21
{181}
(#1733057@0)
-
好象搞定了,试一把!
-rlm007(厨房里的科学家);
2004-5-21
(#1733053@0)
-
正解,就是轮胎的那种方法. 喝水上厕所去... File file = new File(path + name); FileOutputStream fos = new FileOutputStream(file);
-rlm007(厨房里的科学家);
2004-5-21
(#1733066@0)