2016-05-16 206 views
1

我正在嘗試錄製音頻,我正在使用此示例codename one captureCodename one,Capture Audio

我收到錯誤在這條線

Util.copy(fs.openInputStream(file), fs.openOutputStream(filePath)); 

的Util類找不到方法copy 這是我的代碼

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); 
    } 

回答

1

確保您使用的com.codename1.io.Util,而不是來自不同包裝的Util類