/**
* @Description: 在文件中进性输入操作
* @author: 李世康
* @date: 2021年06月17日 10:00
*/
public class OUtTss {
public static void main(String[] args) {
OutputStream outputStream=null;
try {
outputStream = new FileOutputStream("D:" + File.separator + "IoText.java", true);
String str = "=================";
byte[] bytes = str.getBytes();
outputStream.write(bytes);
}catch (FileNotFoundException e){
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (outputStream != null) {
outputStream.close();
}
}catch (IOException e) {
e.printStackTrace();
}
}
}
}
相关文章
- 04-10通过OutputStream在文件中进行输入
- 04-10python – 通过lxml.etree.iterparse在单个文件中解析多个XML声明
- 04-10在Android XML文件(Eclipse)中获得自动完成/提前输入/智能感知的任何可能性
- 04-10python – 无法通过setuptools在egg中包含静态包文件
- 04-10在python源文件中对类定义进行排序的最佳方法是什么?
- 04-10在配置文件tsconfig.json中找不到任何输入。指定的 “include“ 路径为“[“**/*“]”,“exclude“ 路径为“[]”
- 04-10在docker容器中安装vim命令进行编辑文件
- 04-10通过kettle工具,实现以下功能:(1)对文件merge.csv进行完全去重。(2)对文件people_survey.txt中的缺失值进行填充。
- 04-10AndroidStudio_安卓原生开发_拍照存储在Uri中_利用图片后通过Uri获取文件真实路径_然后删除---Android原生开发工作笔记161
- 04-10在腾讯云cdn中预热一个文件夹下所有的文件,并对预热失败的文件进行重新预热,直到所有文件都预热完成