码迷,mamicode.com
首页 > 编程语言 > 详细

java调c# exe 程序,exe里写文件问题

时间:2017-06-14 20:16:01      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:cep   catch   .exe   描述   str   time()   input   new   dex   

应用场景描述:

          java web程序,触发 调用c#写的后台exe程序,发现exe里写的文件找不到。单独在cmd命令行下执行exe没问题;

问题查找:

          由于exe里获取文件路径错误导致;

解决方法:

      exe中获取程序路径改为:

string pathLog = System.Reflection.Assembly.GetExecutingAssembly().Location;
pathLog = pathLog.Substring(0, pathLog.LastIndexOf(@"\")) + "/Log.txt";

 

附录:java里调exe代码:

public void exeTest() {
String mainExePath ="F:\\Trans2Json\\Trans2Json.exe",prjid="1",mid="104",modelExePath="",modelParamsPath="",type="",
contourLineExePath="",contourLineParamsPath="";
try {
Process process = Runtime.getRuntime().exec(mainExePath + " All 1 104");

BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));

String str;
while(( str = br.readLine()) != null)
{
System.out.println(str);
}

System.out.println("成功");
}catch (Exception e) {

System.out.println("计算失败");
}

}

 

          

        

java调c# exe 程序,exe里写文件问题

标签:cep   catch   .exe   描述   str   time()   input   new   dex   

原文地址:http://www.cnblogs.com/lj821022/p/7010507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!