我想使用文件選擇器加載文本文件。然後我需要在文件上使用掃描器,因爲我正在對字符串進行標記。在我使用我的項目文件中的文件對文件名進行硬編碼之前,現在我希望能夠從任何地方獲取所需的文件。 我當前的代碼 public void LoadCustomer() throws IOException
{
Stage stages = new Stage();
FileChooser fi
我有這樣的代碼: protected void pickFile(View view){
///Codigo que abre la galeria de imagenes y carga la imagen en displayedImage
Intent intent = new Intent();
intent.setType("file/*");
我只想選擇.xls和.xlsx文件,但我無法選擇任何類型的文件。任何人都可以向我推薦任何代碼,或者有人可以對我現有的代碼進行更改嗎? 在此先感謝。 public class Convertor {
public static void main(String[] args) {
JFileChooser chooser = new JFileChooser();
c