All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spun.util.tests.Opener Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package com.spun.util.tests;

import com.spun.util.ObjectUtils;

public interface Opener
{
  public boolean open(String fileName);
  public static void execute(String cmd)
  {
    try
    {
      Runtime.getRuntime().exec(cmd);
      Thread.sleep(2000);
    }
    catch (Exception e)
    {
      throw ObjectUtils.throwAsError(e);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy