B
bocadiio
Gast
Ich bekomme einfach nicht den Sound hin. Hier eine kleine Beispielsache:
/* PlaySound.java */
import java.net.*;
import java.applet.*;
public class PlaySound
{
public static void main(String[] args)
{
if (args.length >= 1) {
try {
URL url = new URL(args[0]);
AudioClip clip = Applet.newAudioClip(getCodeBase(), "./audio/button1.wav"); //hier ist das Problem
clip.play();
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
}
} catch (MalformedURLException e) {
System.out.println(e.toString());
}
}
}
}
vielleicht kann mir ja hier jemand helfen.....
anscheinend ist die Pfadangabe nictht korrekt....
/* PlaySound.java */
import java.net.*;
import java.applet.*;
public class PlaySound
{
public static void main(String[] args)
{
if (args.length >= 1) {
try {
URL url = new URL(args[0]);
AudioClip clip = Applet.newAudioClip(getCodeBase(), "./audio/button1.wav"); //hier ist das Problem
clip.play();
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
}
} catch (MalformedURLException e) {
System.out.println(e.toString());
}
}
}
}
vielleicht kann mir ja hier jemand helfen.....
anscheinend ist die Pfadangabe nictht korrekt....