String templateContent="12121212" ;//组装html字符串
String fileame = "生成html文件.html";
fileame = filePath+fileame;//生成的html文件保存路径。
FileOutputStream fileoutputstream = new FileOutputStream(fileame);// 建立文件输出流
System.out.print("文件输出路径:");
System.out.print(fileame);
byte tag_bytes[] = templateContent.getBytes();
fileoutputstream.write(tag_bytes);
fileoutputstream.close();//关闭输出流