2016-05-16 4 views
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); 
    } 

Antwort

1

Achten Sie darauf, die com.codename1.io.Util verwenden und nicht eine Util-Klasse aus einem anderen Paket