将“”写入HTML文件。从.txt读取字节并将相同的字节写入HTML文件。还要在写入字节之前添加“
”。到最终文件
try {
FileOutputStream fout = new FileOutputStream(textFILE+".txt");
FileInputStream fin = new FileInputStream(textFILE+".html");
byte b;
b = (byte) fin.read();
System.out.println("<html><br>"+b+"</html>");
fout.close();
fin.close();
} catch (IOException e) {
System.out.println(e.getMessage());
}
}