本文整理汇总了Java中org.gudy.azureus2.platform.PlatformManager.createProcess方法的典型用法代码示例。如果您正苦于以下问题:Java PlatformManager.createProcess方法的具体用法?Java PlatformManager.createProcess怎么用?Java PlatformManager.createProcess使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.gudy.azureus2.platform.PlatformManager
的用法示例。
在下文中一共展示了PlatformManager.createProcess方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createProcess
import org.gudy.azureus2.platform.PlatformManager; //导入方法依赖的package包/类
public void
createProcess(
String command_line )
throws PluginException
{
try{
// we need to spawn without inheriting handles
PlatformManager pm = PlatformManagerFactory.getPlatformManager();
pm.createProcess( command_line, false );
}catch(Throwable e) {
Debug.printStackTrace(e);
try{
Runtime.getRuntime().exec( command_line );
}catch( Throwable f ){
throw( new PluginException("Failed to create process", f ));
}
}
}
示例2: win32NativeRestart
import org.gudy.azureus2.platform.PlatformManager; //导入方法依赖的package包/类
private boolean
win32NativeRestart(
PrintWriter log,
String exec )
{
try{
// we need to spawn without inheriting handles
PlatformManager pm = PlatformManagerFactory.getPlatformManager();
pm.createProcess( exec, false );
return( true );
}catch(Throwable e) {
e.printStackTrace(log);
return( false );
}
}
示例3: createProcess
import org.gudy.azureus2.platform.PlatformManager; //导入方法依赖的package包/类
public void
createProcess(
String command_line )
throws PluginException
{
try{
// we need to spawn without inheriting handles
PlatformManager pm = PlatformManagerFactory.getPlatformManager();
if ( pm.hasCapability( PlatformManagerCapabilities.CreateCommandLineProcess )){
pm.createProcess( command_line, false );
return;
}
}catch( Throwable e ){
Debug.printStackTrace(e);
}
try{
Runtime.getRuntime().exec( command_line );
}catch( Throwable f ){
throw( new PluginException("Failed to create process", f ));
}
}