【发布时间】:2015-08-20 10:18:49
【问题描述】:
这是我的代码:
public static void modif(String name, String color, int k)
{
try {
File input= new File("file1.txt");
File output= new File("temp.txt");
String correctLine = (String) FileUtils.readLines(input).get(k-3);
BufferedReader br = new BufferedReader(new FileReader(input));
BufferedWriter bw = new BufferedWriter(new FileWriter(output));
String line="";
while ((ligne = br.readLine()) != null){
String lineConcat = line + "\n";
if(ligne.startsWith("\""+name+"\"")){
System.out.println(correctLine); // i can display the line to change
bw.write("\"" + name + "\"" + ": " + "\"" + color + "\"" + "\n"); // this is the way i replace my line
System.out.println("Awesome !");
bw.flush();
}else{
bw.write(lineConcat);
bw.flush();
}
}
bw.close();
br.close();
output.renameTo(new File("file2.txt"));
} catch (IOException e) {
e.printStackTrace();
}
}
基本上我想在检测到条件时替换特定行。 我知道要更改哪条线,但我不知道如何替换它。因为目前我只能检测一行的开头并更改当前行而不是前一行。
我尝试使用 FileUtils.writeStringToFile 但它不起作用所以我在这里寻求帮助:(
谢谢大家!
编辑:我的输入是这样的:
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
6.07721374522497,
43.08716485432151
],
[
6.051202617426629,
43.07969629888752
],
[
6.032563261594762,
43.07758570385911
]
]
]
},
"properties": {
"_storage_options": {
"color": "Orange"
},
"name": "CARQUEIRANNE"
}
}
我实际上正在做的是当我找到“名称”行时:“CAREQUEIRANNE”,我想替换他的颜色属性,所以我必须去当前行 - 3,我真的不知道该怎么做它
编辑 2:
我的方法是这样调用的:
BufferedReader in2 = new BufferedReader(new FileReader("file1.txt"));
String line;
String lineConcat = null;
int k=1;
while ((line = in2.readLine()) != null)
{
lineConcat = line + "\n";
String myPattern = tabCity[21];
Pattern p = Pattern.compile(myPattern);
Matcher m = p.matcher(lineConcat);
//Matcher m2 = p2.matcher(lineConcat);
if (m.find()){
System.out.println("Found !");
System.out.println(k);
modif("color", "Orange", k);
}
else
{
System.out.println("Not Found");
}
k++;
}
in2.close();
当我发现我的 Pattern 与文件中的研究相匹配时,我调用我的函数来替换一个城市的颜色属性
编辑 3:
@BrettWalker 这是新代码:
public static void modif(String nom, String color, int k)
{
try {
File input = new File("file1.txt");
File output = new File("temp.txt");
BufferedReader br = new BufferedReader(new FileReader(input));
BufferedWriter bw = new BufferedWriter(new FileWriter(output));
String line="";
Stack st = new Stack();
st.push(br.readLine());
st.push(br.readLine());
st.push(br.readLine());
while ((ligne = br.readLine()) != null){
String ligneConcat = ligne + "\n";
st.push(ligneConcat);
String oldLine = (String) st.pop();
if(ligne.startsWith("\""+nom+"\"")){
oldLine = "\"" + nom + "\"" + ": " + "\"" + color + "\"" + "\n";
}
bw.write(oldLine);
}
bw.write((int) st.pop());
bw.write((int) st.pop());
bw.write((int) st.pop());
bw.close();
br.close();
output.renameTo(new File("file2.txt"));
} catch (IOException e) {
e.printStackTrace();
}
}
【问题讨论】:
-
我使用 java 7 和 Commons IO 库
-
您能否展示一个输入示例、程序给出的输出以及您期望它的样子?
-
确定我已经编辑了我的帖子
-
方法怎么调用?
-
为什么不直接解析 JSON 输入,修改你的单个值,然后将修改后的 JSON 重新保存到文件中?
标签: java