判断当前程序是否正在运行(
xiaoyuer 原创 更新:2007-04-08 09:21:58 版本: 1.0 )[@more@]/**
* 通过文件锁来判断程序是否正在运行
* @return 如果正在运行返回true,否则返回false
*/
private static boolean isRunning()
{
boolean rv=false;
try {
//
String os_name=System.getProperty("os.name");
//指定文件锁路径
String path=null;
if(os_name.indexOf("Windows")>-1)
{
//如果是Windows操作系统
path=System.getProperty("user.home")+System.getProperty("file.separator");
}
else
{
path="/usr/temp/";
}
File dir=new File(path);
if(!dir.exists())
{
dir.mkdirs();
}
//程序名称
String applicationName="sms";
RandomAccessFile fis = new RandomAccessFile(path+applicationName+".lock","rw");
FileChannel lockfc = fis.getChannel();
FileLock flock = lockfc.tryLock();
if(flock == null) {
System.out.println("程序正在运行.");
rv=true;
}
} catch (FileNotFoundException e1) {
e1.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
return rv;
}
* 通过文件锁来判断程序是否正在运行
* @return 如果正在运行返回true,否则返回false
*/
private static boolean isRunning()
{
boolean rv=false;
try {
//
String os_name=System.getProperty("os.name");
//指定文件锁路径
String path=null;
if(os_name.indexOf("Windows")>-1)
{
//如果是Windows操作系统
path=System.getProperty("user.home")+System.getProperty("file.separator");
}
else
{
path="/usr/temp/";
}
File dir=new File(path);
if(!dir.exists())
{
dir.mkdirs();
}
//程序名称
String applicationName="sms";
RandomAccessFile fis = new RandomAccessFile(path+applicationName+".lock","rw");
FileChannel lockfc = fis.getChannel();
FileLock flock = lockfc.tryLock();
if(flock == null) {
System.out.println("程序正在运行.");
rv=true;
}
} catch (FileNotFoundException e1) {
e1.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
return rv;
}
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/7199667/viewspace-909421/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/7199667/viewspace-909421/