0

Javaアプリケーションとそのファイルを編集できる管理者の間でファイルを共有するために、ftpサーバーのさまざまなオプションまたは代替案を知りたいです。

このファイルは単なるリストであり、管理者が変更でき、すでに実装されているCSVパーサーによって読み取られます。

 String strFile = "C:\\localPath\\stopphrases.csv";

            //create BufferedReader to read csv file
            BufferedReader br = new BufferedReader( new FileReader(strFile));
            String strLine = "";
            StringTokenizer st = null;

            while( (strLine = br.readLine()) != null){
                st = new StringTokenizer(strLine, ";");
            }

私が持っている唯一のアイデアはftpサーバーですが、私が知らない他の可能性があると確信しています。前もって感謝します

4

1 に答える 1

0

I am not sure how much you want to change in the client. But maybe a cloud service like DropBox or Google drive could work? That way you set up a local folder that is automatically synked to the "Admin" who can change it and it will be synced back.

This solution would mean that you might have to change your code, and if so the path would be the only change.

于 2012-05-07T14:08:42.550 に答える