Commit 40a4442d by zwb

修改简历生成html文件添加字体参数

parent f8fed674
...@@ -45,7 +45,7 @@ public class FileProcessor { ...@@ -45,7 +45,7 @@ public class FileProcessor {
String line; String line;
while ((line = reader.readLine()) != null) { while ((line = reader.readLine()) != null) {
// 替换字符串 // 替换字符串
String replaceLine = line.replace(oldData, newData).replace(oldFontSize, newFontSize).replace(oldLineHeight, newLineHeight); String replaceLine = line.replace(oldData, newData);//.replace(oldFontSize, newFontSize).replace(oldLineHeight, newLineHeight)
writer.write(replaceLine); writer.write(replaceLine);
writer.newLine(); // 写入换行符 writer.newLine(); // 写入换行符
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment