Java2009. 2. 1. 15:30
 Runtime r = Runtime.getRuntime();
     try {
   r.exec("C:\\Program Files\\EditPlus 3\\editplus.exe");   
  } catch (IOException e) {
   System.out.println("프로그램 실행 에러");
   e.printStackTrace();
  }
Posted by 위푸
Java2009. 2. 1. 15:29

public void playSound(String file_url)
 {
  try{

   File file = new File(file_url);
   FileInputStream fis = new FileInputStream(file);
   AudioStream as = new AudioStream(fis);
   AudioPlayer.player.start(as);

  }catch(Exception e){
   e.printStackTrace();
   System.out.println("sound exception");
  }
 }

- mid, wav등의 파일만 재생됩니다.

Posted by 위푸