package run;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class RunEclipse {
private static String picFolder = "mysplash";
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
// フォルダが存在するかどうかチェック
makeFolder(picFolder);
// 実行文字を作成する
String runString = "eclipse.exe -showsplash ";
runString += picFolder;
runString += "\\";
runString += getShowPictureName(picFolder);
// 実行する
Runtime rt = Runtime.getRuntime();
rt.exec(runString);
}
private static void makeFolder(String folder) {
File file = new File(folder);
if (!file.exists()) {
// 存在しないと、新しいフォルダを作成する
file.mkdir();
}
}
/**
* @param args
*/
private static String getShowPictureName(String filePath) {
int picCount = 0;
List<String> picList = new ArrayList<String>();
String strRun = "";
// 写真のパス
File file = new File(filePath);
if (file.isDirectory()) {
String[] filelist = file.list();
// フォルダには写真ファイルの個数
for (int i = 0; i < filelist.length; i++) {
// bmpファイルの個数
if (filelist[i].toLowerCase().endsWith(".bmp")) {
picCount++;
picList.add(filelist[i]);
}
}
// ランダムなファイル名を取得する
if (picCount > 0) {
Random rand = new Random();
int index = rand.nextInt(picCount);
strRun = filelist[index];
}
}
return strRun;
}
}
将打包之后的run.jar文件直接复制到eclipse的目录下,然后创建名为"mysplash"的文件夹,文件夹中保存想要启动的图片(bmp格式,455*295),会随机选取其中一张作为启动画面。
如没有手动创建"mysplash"文件夹,则会自动创建该文件夹。