2016年6月18日土曜日

【SC-02F Android5.0】 重くなった動作の改善成功伝

重くなってしまったスマホを、買い替え無し&root化無し&複雑な操作無しで改善できたので、
その方法?成功伝?について書きます。


制作者 flaticon


2016年6月2日木曜日

test

package copy;
 import java.text.SimpleDateFormat;
import java.util.Date;

 public class Time_Get {
     public  String time_get() {
         Date date = new Date();
         //SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
         SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy年MM月dd日 HH時mm分ss秒");
         sdf2.toString();
        // System.out.println(sdf1.format(date));
         System.out.println(sdf2.format(date));
         String time = new String(sdf2.format(date));
         return time;
       
     }