如何列印 android 中當前包快取目錄資訊?


以下示例演示瞭如何在 android 中列印當前包快取目錄資訊。

步驟 1 − 在 Android Studio 中新建一個專案,轉到檔案 ⇒ 新建專案並填寫所有必需資訊以建立一個新專案。

步驟 2 − 向 res/layout/activity_main.xml 中新增以下程式碼。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:gravity="center"
   android:layout_height="match_parent"
   tools:context=".MainActivity">
   <TextView
      android:id="@+id/text"
      android:textSize="30sp"
      android:layout_width="match_parent"
      android:layout_height="match_parent" />
</LinearLayout>

在以上程式碼中,我們採用文字檢視來顯示當前包快取資訊。

步驟 3 − 向 src/MainActivity.java 中新增以下程式碼

package com.example.myapplication;

import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.widget.TextView;

import java.security.Security;
import java.util.Locale;

public class MainActivity extends AppCompatActivity {
   TextView textView;
   @RequiresApi(api = Build.VERSION_CODES.P)
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      textView = findViewById(R.id.text);
      textView.setText("" + getCacheDir().getAbsolutePath().toString());
   }
}

讓我們試著執行你的應用程式。我假設你已經將你的 Android 手機與電腦連線。要從 android studio 執行應用,請開啟你的某個專案活動檔案並單擊工具欄的執行  圖示。選擇你的移動裝置作為選項,然後檢視你的移動裝置,它將顯示你的預設螢幕 −

此處 下載專案程式碼

更新於: 2020 年 6 月 26 日

535 次檢視

啟動你的職業生涯

完成課程獲得認證

立即開始
廣告
© . All rights reserved.