i have an database of order and it order date then it order date will be uploaded to database like this (3-3-2020)
then in my shop application, i call the database using JSON, and i want to convert 3-3-2020 to Tuesday, March, 2020
i try this solution
pertemuan = getIntent().getStringExtra("pertemuan");
SimpleDateFormat format = new SimpleDateFormat("EEEE, MMMM d, yyyy");
String tanggal = format.format(pertemuan);
pertemuanview.setText(tanggal);
but it give me this error
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.app.appguru/com.app.appguru.Detail_Pesanan}: java.lang.IllegalArgumentException: Cannot format given Object as a Date
then how to reformat the date?