Codename one,Capture Audio

时间:2016-05-16 15:16:15

标签: java codenameone

我正在尝试录制音频,我正在使用此示例codename one capture

我在这一行收到错误

 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 个答案:

答案 0 :(得分:1)

确保使用com.codename1.io.Util而不是其他包中的Util类