Calendar c = Calendar.getInstance();
        int y1 = c.get(Calendar.YEAR);
        int m1 = c.get(Calendar.MONTH)+1;
        int d1 = c.get(Calendar.DATE)+1;
        String y = Integer.toString(y1);
        String m = Integer.toString(m1);
        String d = Integer.toString(d1);
        
   
        

String result = y+m+d;
    edt.setText(result);

오류나서 이렇게 간단하게까지 바꿔줬는데 안되네요 ㅠ
어찌된거죠