论坛首页 入门技术论坛

D语言读写文件的操作(原创)

浏览 3025 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2007-03-22  

import std.stream;
import std.stdio;

void main () {
 File file = new File ;
 File OutFile = new File; 
 try {
  file.open("1.srt",FileMode.In);
  OutFile.open("out.srt", FileMode.Out);
  while(!file.eof()) {
    char[] str=file.readLine();
    OutFile.writeLine(str);
    //printf("%.*s\n",file.readLine());
  }
 }
 catch (Exception x) {
  writefln("Datei kann nicht geoeffnet werden ");
  throw x;
 }
 OutFile.close();
 file.close();
 }

   发表时间:2007-03-24  
这样也行,不知从哪里copy了一段代码。 
0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics