class Music
{
public static void main(String args[])
{
try
{
//java.lang.Runtime.getRuntime().exec("C:/Program Files/Tencent/QQPlayer/QQPlayer.exe \"E:/11.wma\"");
Runtime.getRuntime().exec("C:/Program Files/The KMPlayer/KMPlayer.exe \"E:/美丽密令.rmvb\"");
}
catch(Exception e)
{
e.printStackTrace();
}
}
};