zoukankan      html  css  js  c++  java
  • 如何通过C#开发调用Skyline软件中提供的小工具

    熟悉Skyline的朋友会知道,在TerraBuilder和TerraExplorer Pro软件的安装目录里,提供了很多个小工具(exe程序);

    虽然我们看不到这些小工具的源代码,但我们还是可以在自定义的开发环境中来调用它们的;

    尤其是可以用来实现一些批量化操作和自动化操作;

    常用的小工具:

    MakeXpl.exe;

    MakeCPT.exe;

    Triangulate Irregular Elevation Grid.exe;

    Convert XYZ ASCII Elevation.exe;

    Convert Z ASCII Elevation.exe;

    Gather Tiled Files.exe;

    Split and Merge MPU-MPT files.exe

    ......

    用C#调用cmd执行命令,网上可以找到很多使用的方法和参数的设置示例代码;

    #region "运行工具将XYZ转换成TRI"
            //运行工具将XYZ转换成TRI
            //赵贺 2016.8.19
            //输入XYZ文件路径和TRI文件路径及采样精度
            private void XYZtoTRI(String inputFile, String outputFile, Double resolution)
            {
                String programName = TempDataPath + @"	td.exe"; ;
    
                String cmd = """ + programName + """ + " -InputFile " + inputFile + " -OutputFile " + outputFile + " -Resolution " + resolution + " &exit";
                using (Process proc = new Process())
                {
                    proc.StartInfo.CreateNoWindow = true;
                    proc.StartInfo.FileName = "cmd.exe";
    
                    proc.StartInfo.UseShellExecute = false;                
                    proc.StartInfo.RedirectStandardInput = true;
                    proc.StartInfo.RedirectStandardOutput = true;
                    proc.StartInfo.RedirectStandardError = true;
                    proc.StartInfo.ErrorDialog = false;
                    
                    //proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
                    proc.Start();                
                    proc.StandardInput.WriteLine(cmd);
                    //proc.StandardInput.AutoFlush = true;
                    //获取cmd窗口的输出信息
                    proc.StandardOutput.ReadToEnd();                
                    proc.WaitForExit();//等待程序执行完退出进程
                    
                    proc.Close();
                }
            }
    
            #endregion
    

      

    关于如何C#运行cmd,参考了园子里其他朋友的博客:http://www.cnblogs.com/babycool/p/3570648.html#undefined

  • 相关阅读:
    flash 异性窗体
    ASCⅡ 表 关键字符
    VC 中显示位图的步骤
    输出电脑的所有Mac地址
    const char* 和 char* const
    C# 生成PDF
    vc6显示行号
    纪念一下。
    MII接口全家福
    Virtex6 GTX设计总结:预加重、均衡、输出振幅的值
  • 原文地址:https://www.cnblogs.com/yitianhe/p/5845534.html
Copyright © 2011-2022 走看看