1
Ich versuche Audio aufzunehmen, ich verwende dieses Beispiel codename one capture.Codename eins, Capture Audio
Ich erhalte Fehler auf dieser Linie
Util.copy(fs.openInputStream(file), fs.openOutputStream(filePath));
Util Klasse kann nicht finden Methode copy
dies ist mein Code
FileSystemStorage fs = FileSystemStorage.getInstance();
String recordingsDir = fs.getAppHomePath() + "recordings/";
fs.mkdir(recordingsDir);
try {
String file = Capture.captureAudio();
if(file != null) {
SimpleDateFormat sd = new SimpleDateFormat("yyyy-MMM-dd-kk-mm");
String fileName =sd.format(new Date());
String filePath = recordingsDir + fileName;
Util.copy(fs.openInputStream(file), fs.openOutputStream(filePath)); //stuck here
}
}catch(IOException err) {
System.out.println(err);
}