如何在Java中以隱藏模式運行外部進程(不應顯示窗口)。我用Google搜索,發現這可以在.NET中進行使用下面的代碼:以隱藏模式運行進程
Dim ProcessProperties As New ProcessStartInfo
ProcessProperties.FileName = "notepad"
ProcessProperties.Arguments = "myTextFile.txt"
ProcessProperties.WindowStyle = ProcessWindowStyle.Hidden
Dim myProcess As Process = Process.Start(ProcessProperties)
有沒有提供對Java任何類似的功能嗎?
這不是C#。看起來更像VB。 – detunized 2011-04-08 14:32:39
嗯,這裏是鏈接http://visualbasic.about.com/od/usingvbnet/a/prstrt.htm – hnm 2011-04-08 14:34:07