0

だから私はこのファイルを持っています:

    ------------splitter------------ 
classname: test
class: testing
description: this is a test
------------splitter------------ 
classname: test1
class: testing1
description: this is a test1
------------splitter------------ 
classname: test2
class: testing2
description: this is a test2

そして、私はこのファイルを次のように読んでいます:

try {
            final FileInputStream fis = new FileInputStream("class.file");
            BufferedReader b = new BufferedReader(new InputStreamReader(fis));
            String line;
            while ((line = b.readLine()) != null) {
                String[] split = line.split("------------splitter------------");
   }
        }  catch (Exception e) {
        }

クラス名、クラス、説明など、すべての行の内容を取得するにはどうすればよいですか? コード全体を返すだけのsplit [0]を試しました(---スプリッタ---なし)。

4

0 に答える 0