在Java中,可以通過File類的getName()方法來獲取文件流的文件名。例如:
import java.io.File;
public class Main {
public static void main(String[] args) {
File file = new File("path/to/file.txt");
String fileName = file.getName();
System.out.println("文件名:" + fileName);
}
}
在上述代碼中,首先創建了一個File對象,然后通過getName()方法獲取文件名,最后將文件名打印出來。
請注意,需要替換代碼中的"path/to/file.txt"為實際的文件路徑。