Список каталогов не обновляется - PullRequest
0 голосов
/ 26 марта 2010

Это сводит меня с ума! У меня есть панель, которая отображает список файлов из каталога. Список хранится в векторе. Когда я нажимаю на кнопку, в том же каталоге создается новый файл, и список необходимо обновить.

Я не понимаю, почему Java не может увидеть новый файл, даже если я добавлю старый добрый DIR в Dos, Dos сможет увидеть файл. Это похоже на то, что новый файл невидим, хотя я вижу его, и Дос видит его. Я пытался дать ему некоторое время (сон, выход), но это бесполезно. Я также попытался скопировать в новый временный файл и прочитать временные данные, но снова безрезультатно. Вот некоторый код (удалены некоторые ненужные строки):

public class Button extends EncapsulatedButton {

 public Button()
 {
  super("button pressed");
 }

 public void actionPerformed(ActionEvent arg0) {

//removed function here where the new file is created in the directory
//remove call to DOS that regenerates /myFileList.txt after a new file was added in the directory
//at this point, DOS can see the new file and myFileList.txt is updated, however it is read by java without the update!!!!!

//now trying to read the directory after the new file was created  

    Vector data = new Vector<String>();
    String s = null;

// Create the readers to read the file.

  try {
   File f = new File("/myFileList.txt");
   BufferedReader stream = new BufferedReader(new InputStreamReader(new FileInputStream(f)));

  while((s = stream.readLine()) != null)
  {
    data.addElement(s.trim());
  }
  stream.close();

  } catch (IOException e) {
   e.printStackTrace();
  } 

  util();

 }

 void util(){
//giving it time is not helping
  Thread.yield();
  try {
   Thread.sleep(10000);
  } catch (InterruptedException e1) {
   e1.printStackTrace();
  }
  //get the file listing through java instead of DOS - still invisible
  File fLocation = new File("/myDir");
     File[] filesFound = fLocation.listFiles();

     for (int i = 0; i < filesFound.length; i++) {
       if (filesFound[i].isFile()) {
         System.out.println("**********" + filesFound[i].getName());
       }
     }

//last resort: copy to a temp then read from there - still not good
   try{
     //copy to a temp file
      File inputFile = new File("/myFileList.txt");
       File outputFile = new File("/myFileList_temp.txt");

       FileReader in = new FileReader(inputFile);
       FileWriter out = new FileWriter(outputFile);
       int c;

       while ((c = in.read()) != -1)
         out.write(c);

       in.close();
       out.close();

     //read the copy to see if it is updated
       // Open the file that is the first 
       // command line parameter
       FileInputStream fstream = new FileInputStream("/myFileList_temp.txt");
       // Get the object of DataInputStream
       DataInputStream in1 = new DataInputStream(fstream);
       BufferedReader br = new BufferedReader(new InputStreamReader(in1));
       String strLine;
       //Read File Line By Line
       while ((strLine = br.readLine()) != null)   {
         // Print the content on the console
         System.out.println ("Test file read: " + strLine);
       }
       //Close the input stream
       in1.close();
       }catch (Exception e){//Catch exception if any
         System.err.println("Error: " + e.getMessage());
       }
 }

}

Буду признателен за любые выводы. Спасибо.

myFileList.txt выглядит так:

myline1
myline2
myline3

После добавления нового файла в папку,

myline4 должен появиться в нем, затем он будет прочитан и отображен на панели.

Ответы [ 2 ]

0 голосов
/ 18 января 2014

Это работает для меня: Чтобы обновить список каталогов, снова вызовите .listFiles ().

filesFound = fLocation.listFiles (); должен показать самый обновленный список каталогов. Надеюсь, это поможет вам.

0 голосов
/ 26 марта 2010

Честно говоря, ваш код беспорядок.

Вы читаете из /myFileList.txt и ничего не делаете с тем, что читаете, кроме как хранить его во временном Vector. В лучшем случае это не имеет никакого эффекта; в худшем случае (если файл, например, не существует) выдает исключение. Что бы он ни делал, он не создает новый файл.

Кроме того, я не вижу ссылки на панель в вашем графическом интерфейсе, которая предположительно отображает список файлов. Как вы ожидаете, что он будет обновлен?

...