java删除01.html文件中的</body>和</html>并向文件中增加<h1>1</h1></body></html>
时间: 2023-11-16 16:09:19 浏览: 88
Java把html生成pdf (xhtmlrenderer)
以下是使用Java代码删除01.html文件中的</body>和</html>并向文件中增加<h1>1</h1></body></html>的示例:
```java
import java.io.*;
public class FileManipulation {
public static void main(String[] args) {
try {
// 读取文件内容
File file = new File("01.html");
BufferedReader reader = new BufferedReader(new FileReader(file));
StringBuilder stringBuilder = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
stringBuilder.append(line);
}
String content = stringBuilder.toString();
reader.close();
// 删除 </body> 和 </html>
content = content.replaceAll("</body>", "");
content = content.replaceAll("</html>", "");
// 向文件中增加 <h1>1</h1></body></html>
content += "<h1>1</h1></body></html>";
// 将新内容写入文件
BufferedWriter writer = new BufferedWriter(new FileWriter(file));
writer.write(content);
writer.close();
System.out.println("操作完成。");
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
这段代码首先读取文件内容,然后使用字符串替换方法删除文件中的</body>和</html>。接着向文件内容末尾增加<h1>1</h1></body></html>。最后将新内容写入文件中。
阅读全文