Oracle将以74亿美元收购Sun
甲骨文以现金收购Sun微系统公司,交易价格达74亿美元。该协议达成后,IBM公司放弃了收购网络设备制造商。IBM公司此前表示愿意以每股9.40美元购买Sun公司的股票,但收购谈判破裂后,IBM公司于本月初取消独家谈判权,IBM并撤回其报价。
甲骨文Oracle预期购买在交易关闭之后的第一年每股增加至少15 美分的所得。该交易已被Sun公司的董事会通过,甲骨文公司预计将在今年夏天完成此次的交易。
泄露的内部邮件说明了Sun已经被Oracle以每股$9.50收购,并且Sun官方主页也有了链接.
http://www.sun.com/aboutsun/media/presskits/2009-0420/index.jsp
Java调用Win exe程序
// 用Java调用windows系统的exe文件,比如notepad,calc之类
Runtime rn = Runtime.getRuntime();
rn.exec(command);
// 2.0调用其他的可执行文件,例如:自己制作的exe,或是下载安装的软件
Runtime rn = Runtime.getRuntime();
rn.exec(”"E:/QQ2008Spring.exe”");
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | public class transferExe { /** * @param args */ public static void main(String[] args) { openWinExe(); openMyExe(); } // 用Java调用windows系统的exe文件,比如notepad,calc之类 public static void openWinExe() { Runtime rn = Runtime.getRuntime(); Process p = null; try { String command = "notepad"; p = rn.exec(command); } catch (Exception e) { System.out.println("Error win exec "); } } // 2.0调用其他的可执行文件,例如:自己制作的exe,或是下载安装的软件 public static void openMyExe() { Runtime rn = Runtime.getRuntime(); Process p = null; try { p = rn.exec(""E:/QQ2008Spring.exe""); } catch (Exception e) { System.out.println("Error my exec "); } } } |


