2014-09-11 9 views
0

글쎄요, 우선 저는 안드로이드 개발에 대해 새로운 것으로, 저는 혼자 학습하고 있습니다. 나는 오디오 레코더 앱을 만들기 위해 튜토리얼을 따라 갔다. 그러나이 튜토리얼에서는 기록 된 파일을 경로/sdcard에 저장합니다. 내 앱이 다른 위치에 저장되기를 바랍니다. 예 :/sdcard/음성 경로 (음성 폴더가 생성되지 않음). 가장 간단한 방법은 무엇입니까? 나는 많은 것을 수색했고 나는 어떤 대답도 찾을 수 없다.오디오 파일을 android의 특정 폴더에 저장하십시오.

내 코드

public class FragmentRecording extends Fragment { 
private MediaRecorder recorder; 
private String OUTPUT_FILE; 
FloatingActionButton stop_fab; 
@Override 
public View onCreateView(LayoutInflater inflater,ViewGroup container,Bundle savedInstanceState){ 
    View view=inflater.inflate(R.layout.fragment_recording, container,false); 
    stop_fab=(FloatingActionButton)view.findViewById(R.id.stop_fab_xml); 
    //SALIDA DEL ARCHIVO 
    OUTPUT_FILE=Environment.getExternalStorageDirectory()+"/VoiceRecorder.3gpp"; 

    //GENERAMOS UN METODO PARA SABER LIBERAR EL MICROFONO 
    LiberarMicro(); 
    //Crea el archivo 
    File outfile=new File(OUTPUT_FILE); 
    //Si existe lo borra 
    if(outfile.exists()){ 
     outfile.delete(); 
    } 
    //Empieza Proceso de Grabacion 
    try { 
     StartRecord(); 
    } catch (IllegalStateException e) { 
     // TODO Auto-generated catch block 
     e.printStackTrace(); 
    } catch (IOException e) { 
     // TODO Auto-generated catch block 
     e.printStackTrace(); 
    } 
    stop_fab.setOnClickListener(new OnClickListener(){ 

     @Override 
     public void onClick(View arg0) { 
      // TODO Auto-generated method stub 
      StopRecord(); 
     } 

    }); 


    return view;} 



protected void StopRecord() { 
    // TODO Auto-generated method stub 
    if(recorder!=null){ 
     recorder.stop(); 
    } 
} 



private void StartRecord() throws IllegalStateException, IOException { 
    // TODO Auto-generated method stub 
    recorder=new MediaRecorder(); 
    recorder.setAudioSource(MediaRecorder.AudioSource.MIC); 
    recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 
    recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB); 
    recorder.setOutputFile(OUTPUT_FILE); 

    recorder.prepare(); 

    recorder.start(); 
} 

private void LiberarMicro() { 
    // TODO Auto-generated method stub 
     if(recorder!=null){ 
      recorder.release(); 
     } 

}} 

답변

2
File f = new File(Environment.getExternalStorageDirectory() + "/somedir"); 
if(f.isDirectory()) { 
     //Write code for the folder exist condition 

}else{ 

     // create a File object for the parent directory 
     File wallpaperDirectory = new File("/sdcard/Wallpaper/"); 
     // have the object build the directory structure, if needed. 
     wallpaperDirectory.mkdirs(); 
     // create a File object for the output file 
     File outputFile = new File(wallpaperDirectory, filename); 
     // now attach the OutputStream to the file object, instead of a String representation 
     FileOutputStream fos = new FileOutputStream(outputFile); 

} 

위의 코드는 폴더가 존재 wheather를 확인하거나하지 않습니다. 그렇지 않으면 폴더를 만들고 해당 폴더에 파일을 저장하십시오.

당신은 당신이 혼란스러워하는 경우 알려 주시기 매니페스트

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 

아래 권한을 제공해야합니다. 내가 도움이 경우 친절까지 투표 : 해피

0

그냥 먼저 OUTPUT_FILE에/음성을 추가 (그래서 몇 가지 방법이 스페인어에있는 나의 모국어가 스페인어 것을 알아 보았하십시오). 그런 다음 코드를 추가합니다

if (!outfile.getParentFile().exists()) 
    outfile.getParentFile().mkdirs(); 
1

사용이 코드

SDCardpath = getFilesDir(); 
    myDataPath = new File(SDCardpath.getAbsolutePath() 
      + "/.My Recordings"); 

    // mydir = context.getDir("media", Context.MODE_PRIVATE); 
    if (!myDataPath.exists()) 
     myDataPath.mkdir(); 


    audiofile = new File(myDataPath + "/" + fileName); 

        OR 

주고 저장 권한

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 

를 사용하여 코딩이 SD 카드의 경로에 대한

File sdcard = Environment.getExternalStorageDirectory(); 
File storagePath = new File(sdcard.getAbsolutePath() + "/folderName"); 
File yourfile= new File(storagePath + "/" + fileName + ".filetype"); 
0

당신에게 이 코드도 사용할 수 있습니다.

boolean exists = (new File(path)).exists(); 
    if (!exists){new File(path).mkdirs();} 

는 SD 카드의 경로를 만들 수 있도록하거나 전체 tutorial을 따를 수 있습니다.