Android Javaツール類まとめ


  • 時間1.Androidリスニングシステムのタイムゾーン変化、日付変化、時間変化https://www.cnblogs.com/lotusve/archive/2012/05/30/2525371.html 
  • システム1.現在のメソッドの名前
  • を取得
    https://blog.csdn.net/xsm666/article/details/80823643
            
          2.ネットワーク状態のリスニング
              https://www.jianshu.com/p/6fa0f1f1ce48
            
        
  • ファイル
  •     1.properties読み出し
     Properties properties = new Properties();
    try {
                InputStream in=context.getAssets().open("test.properties");
                properties.load(in);
                in.close();
    }catch (IOException e){
      //  ...
        return;
    }
    
    String host = properties.getProperty("HOST");

        2.EXcelの生成
    まずjxlライブラリを参照します.https://mvnrepository.com/artifact/net.sourceforge.jexcelapi/jxl/2.6.12
            
           https://blog.csdn.net/kangweijian/article/details/86694670