save 버튼을 누르면 Capture Success와 함께 저장이 되게 하고 싶은데 계속 FileNotFounder가 뜨네요..
아래는 코드와 실행화면입니다. 어디의 오류일까요?

case R.id.btn_save:
vw.invalidate();
vw.buildDrawingCache();
Bitmap bit = vw.getDrawingCache();
OutputStream out = null;
try {
out = new FileOutputStream(Environment.getExternalStorageDirectory().getPath()+
"/test"+(saveCnt++)+".png");
bit.compress(Bitmap.CompressFormat.PNG, 75, out);
Toast.makeText(MainActivity.this, "Capture Success", 0).show();
out.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
Toast.makeText(MainActivity.this, "FileNotFounder", 0).show();
} catch (IOException e) {
e.printStackTrace();
Toast.makeText(MainActivity.this, "Inouter", 0).show();
}
break;