谢谢

解决方案 »

  1.   

    只能通过webservice见解调用,要不你就吧那个类从写一遍,java的语法和c#也差不多
      

  2.   


            private string RunCmd(string JavaClassName) {
                            Process p = new Process();
                p.StartInfo.FileName = @"java.exe";
                p.StartInfo.Arguments = string.Format("-classpath XXX \"{1}\"", JavaClassName);
                p.StartInfo.UseShellExecute = false;        
                p.StartInfo.RedirectStandardInput = true;   
                p.StartInfo.RedirectStandardOutput = true;
                p.StartInfo.RedirectStandardError = true;   
                p.StartInfo.CreateNoWindow = true;            p.Start();            
                return p.StandardOutput.ReadToEnd();
            }可以试试管道重定向来后台运行Java类
      

  3.   

    我觉得还是WebService ,楼上哥们的方法,不知道你自己尝试过没有?还挺新奇的!
      

  4.   

    IVR
      

  5.   

    呵呵,已经尝试过了. 
    是用来集成Console程序用的.