java 写出的txt文件如何以ANSI的编码打开
2021/7/30 17:08:15
本文主要是介绍java 写出的txt文件如何以ANSI的编码打开,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
就一个秘密。ANSI其实就是GBK。
/** * 向文件中写入内容 * @param filepath 文件路径与名称 * @param newstr 写入的内容 * 以ansi的编码格式打开文件 * @return * @throws IOException */ private static boolean writeFileContent2(String filepath,String newstr) throws IOException{ Boolean bool = false; String filein = newstr;//新写入的行 String temp = ""; FileInputStream fis = null; InputStreamReader isr = null; BufferedReader br = null; FileOutputStream fos = null; OutputStreamWriter pw = null; try { File file = new File(filepath);//文件路径(包括文件名称) //将文件读入输入流 fis = new FileInputStream(file); isr = new InputStreamReader(fis); br = new BufferedReader(isr); StringBuffer buffer = new StringBuffer(); //文件原有内容 for(int i=0;(temp =br.readLine())!=null;i++){ buffer.append(temp); // 行与行之间的分隔符 相当于“\n” buffer = buffer.append(System.getProperty("line.separator")); } buffer.append(filein); fos = new FileOutputStream(file); pw = new OutputStreamWriter(fos,"GBK"); pw.write(buffer.toString().toCharArray()); pw.flush(); bool = true; } catch (Exception e) { logger.error(e.getMessage()); }finally { //不要忘记关闭 if (pw != null) { pw.close(); } if (fos != null) { fos.close(); } if (br != null) { br.close(); } if (isr != null) { isr.close(); } if (fis != null) { fis.close(); } } return bool; }
这篇关于java 写出的txt文件如何以ANSI的编码打开的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-20软考高项学习:新手入门指南
- 2024-11-20软考考前冲刺学习:轻松备考指南
- 2024-11-20软考论文讲解学习:新手入门攻略
- 2024-11-20软考论文指导学习:新手入门指南
- 2024-11-20软考培训学习:新手入门全指南
- 2024-11-20软考选择题学习:从入门到掌握的简单教程
- 2024-11-20软考培训入门指南:轻松掌握软考必备技能
- 2024-11-20软考认证入门教程:轻松掌握IT认证考试
- 2024-11-20软考试题解析与备考指南
- 2024-11-20软考选择题解题技巧入门指南