我有一個應用程序,我在Windows上使用Qt 4.5.2編寫。我將一些設置存儲在INI文件中,並使用QSettings來加載和保存設置。我想在INI文件中留言。 例如: ; Meta-info to store with the file
[General]
MainWindow\[email protected](1280 600)
MainWindow\[email protected
我正在使用正則表達式來嘗試匹配INI文件中的塊塊。我使用Regular Expressions Cookbook書中給出的配方,但它似乎不適合我。 這裏是我使用的代碼: final BufferedReader in = new BufferedReader(
new FileReader(file));
String s;
String s2 = "";
while((s = in