2014-06-20 33 views
-1

我正在尝试使用ProcessBuilder和.getInputStream()在Java中运行C应用程序。我认为哪个应用程序的输出?那么我认为我需要使用包装在BufferedReader中的FileReader?我不确定如何连接进程和FileReader?Java中的getInputStream + BufferedReader + FileReader

我翻译一些C(在评论):

void run(){ 
     //FILE *POINTS; 
     //I think the above points to the file? so I'm using a InputStream object. 

     private InputStream POINTS; 

      //generate octree for this case 
      //============================= 
      //sprintf(befehl,"%soconv -f %s %s %s \"%s\" > %s\n","",material_file, BlindRadianceFiles_Combined, geometry_file, sun_rad, octree); 
      //note I've replaced "befehl" with "cmd". 

      String.format(cmd, "%soconv -f %s %s %s \"%s\" > %s\n","",material_file, BlindRadianceFiles_Combined, geometry_file, sun_rad, octree); 

      //POINTS = popen(befehl,"r"); 
      //Info on POPEN in C. For instance, if you wanted to read the output of your program, you'd use popen("program", "r"). On the other hand, if you want to write to its input, you would use popen("program", "w"). 

      Process process = new ProcessBuilder(cmd).start(); 
      POINTS = process.getInputStream(); 

      //while(fscanf(POINTS, "%s", buf) != EOF) 
      // printf("%s \n",buf); 
      //pclose(POINTS); 

      BufferedReader in = new BufferedReader(new FileReader("<filename>")); 

      while ((in = fileReader.readLine()) != null){ 
       System.out.printf("%s \n", buf); 
      } 
      POINTS.close(); 

更新:下面:

现在我已经得到了下面的,这个问题似乎有意义吗?有两种不同的C程序,它们根据命令生成文件并执行一些特定的计算。

void run_oconv_and_rtrace() throws IOException{ 
    String line; 
    String cmd = null; 

    //generate octree for this case 
    //============================= 
    //TODO review how the command is generated and what information is required for this analysis 
    cmd = String.format(cmd,"%soconv -f %s %s %s \"%s\" > %s\n","", material_file, BlindRadianceFiles_Combined, geometry_file, sun_rad, octree); 

    /* Use the processbuilder to run an external process (ie. Radiance C program). 
    * process.getOutputStream(): return the standard input of the external program. (ie. Java writes to Process). 
    * process.getInputStream(): return the standard output of the external program. (ie. Jave reads from Process). 
    */ 

    ProcessBuilder builder = new ProcessBuilder(cmd); 
    builder.redirectErrorStream(true);     //adds error stream to inputstream 
    Process process = builder.start(); 

    OutputStream POINTS_FROM_JAVA_TO_C = process.getOutputStream(); 
    InputStream POINTS_FROM_C_TO_JAVA = process.getInputStream(); 

    //BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(POINTS_FROM_JAVA_TO_C)); 
    BufferedReader reader = new BufferedReader(new InputStreamReader(POINTS_FROM_C_TO_JAVA)); 

    //Read output of Radiance: 
    while ((line = reader.readLine()) != null){ 
     System.out.printf("%s \n", buf); 
    } 

    ////////////////////////// 


    // run rtrace and calcualte the shading status for this case 
    //========================================================== 
    //TODO review command 
    cmd = null; 
    cmd = String.format(cmd, "rtrace_dc -ab 0 -h -lr 6 -dt 0 \"%s\" < %s > %s\n",octree,long_sensor_file[BlindGroupIndex],dir_tmp_filename[NumberOfBlindGroupCombinations]); 

    builder = new ProcessBuilder(cmd); 
    builder.redirectErrorStream(true);     //adds error stream to inputstream 
    process = builder.start(); 

    POINTS_FROM_C_TO_JAVA = process.getInputStream(); 
    reader = new BufferedReader(new InputStreamReader(POINTS_FROM_C_TO_JAVA)); 

    //Read output of Radiance: 
    while ((line = reader.readLine()) != null){ 
     System.out.printf("%s \n", buf); 
    } 

    //delete files 
    //HERE WE NEED TO DELETE THE OCTREE FILES CREATED! 

    BlindGroupNumberForThisCombination[NumberOfBlindGroupCombinations]=BlindGroupIndex; 
    NumberOfBlindGroupCombinations++; 
} 

回答

0

改变这一行

BufferedReader in = new BufferedReader(new FileReader("<filename>")); 

这样:

BufferedReader in = new BufferedReader(new InputStreamReader(POINTS)); 
相关问题