クライアント アプリがコンテンツ URI を持つファイルを操作する前に、 リクエストに関する情報(ファイルのデータ型、 表示されます。データ型は、クライアント アプリがファイルを処理できるかどうかを判断するのに役立ちます。また、 ファイルのサイズは、クライアント アプリがファイルのバッファリングとキャッシュをセットアップするのに役立ちます。
このレッスンでは、サーバーアプリの
FileProvider
: ファイルの MIME タイプとサイズを取得します。
ファイルの MIME タイプを取得する
ファイルのデータ型は、ファイルのコンテンツの処理方法をクライアント アプリに示します。特典を
コンテンツ URI を指定して共有ファイルのデータ型を渡した場合、クライアント アプリは
ContentResolver.getType()
。このメソッドは以下の内容を返します。
MIME タイプを指定します。デフォルトでは、
FileProvider
は、ファイル名からファイルの MIME タイプを
。
次のコード スニペットは、クライアント アプリがファイルの MIME タイプを一度取得する方法を示しています。 サーバーアプリがコンテンツ URI をクライアントに返しています。
Kotlin
... /* * Get the file's content URI from the incoming Intent, then * get the file's MIME type */ val mimeType: String? = returnIntent.data?.let { returnUri -> contentResolver.getType(returnUri) } ...
Java
... /* * Get the file's content URI from the incoming Intent, then * get the file's MIME type */ Uri returnUri = returnIntent.getData(); String mimeType = getContentResolver().getType(returnUri); ...
ファイルの名前とサイズを取得する
FileProvider
クラスには、
次を返す query()
メソッド
コンテンツ URI に関連付けられたファイルの名前とサイズ
Cursor
。デフォルトの実装では、次の 2 つの列が返されます。
DISPLAY_NAME
-
ファイルの名前(
String
形式)。この値は、返された値と同じ 作成者:File.getName()
。 SIZE
-
ファイルのサイズ(バイト単位、
long
) この値は 返却済み:File.length()
をご覧ください。
クライアント アプリは、すべて設定することで、ファイルの DISPLAY_NAME
と SIZE
の両方を取得できます。
query()
の引数のリストから
null
(コンテンツ URI を除く)。たとえば、次のコード スニペットは、ファイルの
DISPLAY_NAME
、
SIZE
で、それぞれを別々に表示する
TextView
:
Kotlin
/* * Get the file's content URI from the incoming Intent, * then query the server app to get the file's display name * and size. */ returnIntent.data?.let { returnUri -> contentResolver.query(returnUri, null, null, null, null) }?.use { cursor -> /* * Get the column indexes of the data in the Cursor, * move to the first row in the Cursor, get the data, * and display it. */ val nameIndex = cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME) val sizeIndex = cursor.getColumnIndex(OpenableColumns.SIZE) cursor.moveToFirst() findViewById<TextView>(R.id.filename_text).text = cursor.getString(nameIndex) findViewById<TextView>(R.id.filesize_text).text = cursor.getLong(sizeIndex).toString() ... }
Java
... /* * Get the file's content URI from the incoming Intent, * then query the server app to get the file's display name * and size. */ Uri returnUri = returnIntent.getData(); Cursor returnCursor = getContentResolver().query(returnUri, null, null, null, null); /* * Get the column indexes of the data in the Cursor, * move to the first row in the Cursor, get the data, * and display it. */ int nameIndex = returnCursor.getColumnIndex(OpenableColumns.DISPLAY_NAME); int sizeIndex = returnCursor.getColumnIndex(OpenableColumns.SIZE); returnCursor.moveToFirst(); TextView nameView = (TextView) findViewById(R.id.filename_text); TextView sizeView = (TextView) findViewById(R.id.filesize_text); nameView.setText(returnCursor.getString(nameIndex)); sizeView.setText(Long.toString(returnCursor.getLong(sizeIndex))); ...
その他の関連情報については、以下をご覧ください。