Javaファイルの操作のオブジェクトは、いくつかのメソッドが一般的に使用される(推奨)ファイル
2022-01-20 19:21:19
ファイルオブジェクトは、ファイル操作のための最も一般的に使用されるクラスは、通常、多くの仕事、私の仕事の一般的に使用されるメソッドのいくつかを掲載しています。以下の簡単な要約
ストレートにコードへ。
// Build the file object
File file=new File("E:/android_demo/a");
File fileTest=new File("E:/android_demo/a/test.mp3");
//Get the parent path of the file
File f=file.getParentFile();
System.out.println("f=="+f);//E:\android_demo
//Determine if the file exists
boolean is=file.exists();//doesn't exist, return fasle
System.out.println("is=="+is);
//Get the absolute path of the file can be understood as equivalent to getPath
String path1=file.getAbsolutePath();
System.out.println("path=="+path1);//E:\android_demo\a
//Get the path of the file
String path2=file.getPath();
System.out.println("path2=="+path2);//E:\android_demo\a
//Get the current file name
String s=file.getName();
System.out.println("s==="+s);
// Create a folder, i.e., E:/android_demo/a
file.mkdir();
//create a file, i.e., E:/android_demo/a/test.mp3
fileTest.createNewFile();
// file size, the number of bytes occupied when the file is stored.
long l=f.length();
System.out.println("l=="+l);
//Get the file path string
String str=fileTest.toString();
System.out.println("str=="+str);// E:\android_demo\a\test.mp3
// Rename the file
File fileTest2=new File("E:/android_demo/a/test2.mp3");
boolean b2=fileTest.renameTo(fileTest2);
System.out.println("b2=="+b2);// E:/android_demo/a/test2.mp3
// Delete the file
boolean b3=fileTest.delete();
//delete the folder, note that there must be no files under the deleted folder before it can be deleted, if there are, you should facilitate the deletion of all files before deleting
boolean b4=file.delete();
上記の記事java of Fileオブジェクトのファイル操作は、一般的にいくつかのメソッド(推奨)を使用して、私はあなたと共有しているすべてです、私はそれがあなたに参照を与えることができます願って、私はあなたがスクリプトホームをサポートして願っています。
関連
-
SQL Server 2008 データベース分散クエリの知識
-
SQL Server 2008のデータベースを復元する方法
-
SQL Server 2008でSQLクエリ文のフィールド値の大文字と小文字が区別されない問題の解決
-
sql server 2008 sa パスワードを忘れた場合の解決策
-
sql server 2008データベース移行の2つの方法
-
Sql Server 2008インストールグラフィックチュートリアル
-
SQL Server 2008 R2 データベースミラーリング導入マニュアル(デュアルコンピュータ) SQL Server 2014 も適用可能です。
-
SQL2008 復元 SQL2005 バックアップファイル 不成功の解決法
-
Navicat Premiumを使用してSQLServerのデータをsql形式にエクスポートする
-
SQL Server 2008データベースの定期的な自動バックアップを設定する方法
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
SQL Server 2008 R2のCPUとメモリ使用量の増加に対する2つの解決策
-
SQL Server 2008のデータベース管理システムは、SQLステートメントを使用して、ログインユーザの手順を作成するために説明した
-
sqlserver 2008 データベースに接続する Java コード
-
jdomで中国語のxmlファイルを作成する方法
-
SQL Server 2008r2 データベースサービスにおける各種起動不能の解決方法 (詳細)
-
Sql Server 2008 Lite (Express) + Management Studio Express 初回インストールと使用方法のグラフィックチュートリアル
-
sqlserver2008 初回ログイン失敗の問題と解決策
-
SQL Server 2012 クラスタのインストール方法
-
ログインとパーミッションのロール制御のためのSpringセキュリティ
-
SQL SERVER 2008 r2 のデータ圧縮の2つの方法