用Jacob
或者自己写JNI调用

解决方案 »

  1.   

    java excel api
    poi
    任何一个都可以 ------------------------------------------------------
               我们还年轻牛奶会有的奶牛也会有的 
                 可天天在 csdn 混这些会有吗 ??
      

  2.   

    import java.lang.*;
    import java.io.*;public class LoadWinApp
    {
        public static void main(String args[]) throws IOException
        {
            Runtime r = Runtime.getRuntime();
            Process p = null;
            String strWinApp = "Execel.exe";
            String strWinFile = "C:\\test.xls";        if(args.length > 0)
            {
                strWinFile = args[0];
            }
            try
            {
                p = r.exec(strWinApp + " " + strWinFile);
            }
            catch(Exception e)
            {
                e.printStackTrace();
            }
        }
    }