// 单向光闸写入文件线程new Thread(new Runnable() {// 将map转为jsonJSONObject obdjson = new JSONObject(data);@Overridepublic void run() {try {//创建文件夹及文件String fileName = UUID.randomUUID().toString().replaceAll("-", "");String wfileName = "c:\\外网\\"+fileName+".obd";String path = "E:\\test\\"+fileName+".temp";File fpath = new File(path);File parentFile = fpath.getParentFile();if(!parentFile.exists()) {parentFile.mkdirs();}fpath.createNewFile();// 将json写入到txt中BufferedWriter out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(path, true)));out.write(obdjson.toJSONString());out.close();//剪切并重命名fpath.renameTo(new File(wfileName));} catch (Exception e) {e.printStackTrace();}}}).start();