あなたが求めているのは次のようなものだと思います:
if(command.equals("SONG_PLAY")){
try {
// Execute command
String command = "rhythmbox SPECIFIC.mp3";
Process child = Runtime.getRuntime().exec(command);
} catch (IOException e) {
}
}
ただし、json または xml を使用してリクエストをサーバーに送信することをお勧めします。元。jsonを使用:
{"command": "SONG_PLAY", "music": "SPECIFIC.mp3"}
サーバーでは、次のようなことを行います。
JSONParser parser=new JSONParser();
Object obj = parser.parse(s);
JSONObject jobj = (JSONObject) obj;
if(((String) jobj.get("command")).equals("SONG_PLAY")){
try {
// Execute command
String command = "rhythmbox " + ((String) jobj.get("music"));
Process child = Runtime.getRuntime().exec(command);
} catch (IOException e) {
}
}
お役に立てば幸いです。